HackerLangs
TopNewTrendsCommentsPastAskShowJobs

antononcube

no profile record

Submissions

Day 22 – Numerically 2026 Is Unremarkable yet Happy

raku-advent.blog
5 points·by antononcube·6 เดือนที่ผ่านมา·2 comments

Maze Making Using Graphs [Day 24, Raku Advent Calendar]

raku-advent.blog
2 points·by antononcube·7 เดือนที่ผ่านมา·0 comments

Numerically 2026 is unremarkable yet happy

mathematicaforprediction.wordpress.com
1 points·by antononcube·7 เดือนที่ผ่านมา·1 comments

Robust code generation combining grammars and LLMs

raku-advent.blog
3 points·by antononcube·7 เดือนที่ผ่านมา·1 comments

Data science with Raku – Part 1, Data transformations and analysis

rakuforprediction.wordpress.com
7 points·by antononcube·7 เดือนที่ผ่านมา·2 comments

LLM::Functions and «the Hollywood Principle»

rakuforprediction.wordpress.com
4 points·by antononcube·9 เดือนที่ผ่านมา·1 comments

Asynchronous LLM computations specifications with LLM:Graph

rakuforprediction.wordpress.com
5 points·by antononcube·10 เดือนที่ผ่านมา·8 comments

comments

antononcube
·3 เดือนที่ผ่านมา·discuss
There is a set of Raku modules that leverage LLMs for different tasks (mostly code generation) using different techniques:

- https://raku.land/zef:antononcube/LLM::Resources : Uses agentic LLM-graphs with asynchronous execution

- https://raku.land/zef:antononcube/ML::FindTextualAnswer : Finds answers to questions over provided texts (e.g. natural language code generation commands)

- https://raku.land/zef:antononcube/ML::NLPTemplateEngine : Fills-in predefined code templates based on natural language code descriptions/commands

- https://raku.land/zef:antononcube/DSL::Examples : Example translations of natural language commands to executable code
antononcube
·5 เดือนที่ผ่านมา·discuss
That Python package, "NLPTemplateEngine" has Raku and Wolfram Language counterparts:

- Raku, "ML::NLPTemplateEngine"

  - https://raku.land/zef:antononcube/ML::NLPTemplateEngine
- Wolfram Language, "NLPTemplateEngine"

  - https://resources.wolframcloud.com/PacletRepository/resources/AntonAntonov/NLPTemplateEngine/
antononcube
·6 เดือนที่ผ่านมา·discuss
Related Number Theory notebooks / discussions:

- «Numerically 2026 is unremarkable yet happy: semiprime with primitive roots» https://community.wolfram.com/groups/-/m/t/3594686

- «Happy √2²²-22 -- And other ways to calculate 2026» https://community.wolfram.com/groups/-/m/t/3599161
antononcube
·7 เดือนที่ผ่านมา·discuss
The integer 2026 is semiprime and a happy number, with 365 as one of its primitive roots. Although 2026 may not be particularly noteworthy in number theory, this provides a great excuse to create various elaborate visualizations that reveal some interesting aspects of the number.
antononcube
·7 เดือนที่ผ่านมา·discuss
Interesting variant. I might program it for some of the «Rock-Paper-Scissors extensions» here:

https://rakuforprediction.wordpress.com/2025/03/03/rock-pape...

Some of the extensions would need polyhedral dices:

https://demonstrations.wolfram.com/OpenDiceRolls/
antononcube
·7 เดือนที่ผ่านมา·discuss
This document (notebook) shows transformations of a movie dataset into a format more suitable for data analysis and for making a movie recommender system. It is the first of a three-part series of notebooks that showcase Raku packages for doing Data Science (DS).
antononcube
·7 เดือนที่ผ่านมา·discuss
Yes, Wolfram Language (WL) -- aka Mathematica -- introduced `Tabular` in 2025. It is a new data structure with a constellation of related functions (like `ToTabular`, `PivotToColumns`, etc.) Using it is 10÷100 times faster than using WL's older `Dataset` structure. (In my experience. With both didactic and real life data of 1_000÷100_000 rows and 10÷100 columns.)
antononcube
·9 เดือนที่ผ่านมา·discuss
This blog post (and related notebook) show how to utilize Large Language Model (LLM) Function Calling with the Raku package "LLM::Functions".

- Package: https://raku.land/zef:antononcube/LLM::Functions

- Notebook: https://github.com/antononcube/RakuForPrediction-blog/blob/m...
antononcube
·10 เดือนที่ผ่านมา·discuss
Mostly, because Python is not a good a "discovery" and prototyping language. It is like that by design -- Guido Van Rossum decided that TMTOWTDI is counter-productive.

Another point, which could have mentioned in my previous response -- Raku has more elegant and easy to use asynchronous computations framework.

IMO, Python's introspection matches that Raku's introspection.

Some argue that Python's LLM packages are more and better than Raku's. I agree on the "more" part. I am not sure about the "better" part:

- Generally speaking, different people prefer decomposing computations in a different way. - When few years ago I re-implemented Raku's LLM packages in Python, Python did not have equally convenient packages.
antononcube
·10 เดือนที่ผ่านมา·discuss
Ah, yes, Raku's "LLM::Graph" is heavily inspired by the design of the function LLMGraph of Wolfram Language (aka Mathematica.)

WL's LLMGraph is more developed and productized, but Raku's "LLM::Graph" is catching up.

I would like to say that "LLM::Graph" was relatively easy to program because of Raku's introspection, wrappers, asynchronous features, and pre-existing LLM functionalities packages. As a consequence the code of "LLM::Graph" is short.

Wolfram Language does not have that level introspection, but otherwise is likely a better choice mostly for its far greater scope of functionalities. (Mathematics, graphics, computable data, etc.)

In principle a corresponding Python "LLMGraph" package can be developed, for comparison purposes. Then the "better choice" question can be answered in a more informed manner. (The Raku packages "LLM::Functions" and "LLM::Prompts" have their corresponding Python packages implemented already.)
antononcube
·10 เดือนที่ผ่านมา·discuss
Specifications for asynchronous LLM computations with Raku's "LLM::Graph" detail how to manage complex, multi-step LLM workflows by representing them as graphs. By defining the workflow as a graph, developers can execute LLM function calls concurrently, enabling higher throughput and lower latency than synchronous, step-by-step processes.

"LLM::Graph" uses a graph structure to manage dependencies between tasks, where each node represents a computation and edges dictate the flow. Asynchronous behavior is a default feature, with specific options available for control.
antononcube
·10 เดือนที่ผ่านมา·discuss
God to know.

BTW, several years ago the LLM-revolution didn't happen yet. Raku started to have sound LLM packages circa March-May 2023.
antononcube
·10 เดือนที่ผ่านมา·discuss
What is better in Raku than Python? Did you use any of the dedicated Raku LLM packages?