atlas news
    
Eli Bendersky’s website
16  avril     03h54
Method of differences and Newton polynomials
   I was reading about Babbage’s Difference engine the other day, and stumbled upon a very interesting application of the forward differences method. It turns out that if we get a sequence generated by a polynomial, under certain conditions we can find the generating polynomial from just a few...
31  mars     20h02
Summary of reading: January - March 2024
   quot;Lessons in Chemistry: A Novel quot; by Bonnie Garmus a research chemist finds her way in the world following multiple personal tragedies and facing extreme gender discrimination. I have some mixed feelings about this book. On one hand it’s original, enternaining, well written and thought...
06  mars     04h28
The life of an Ollama prompt
   In a previous post I’ve described how thanks to standardized tooling we could use a locally running Gemma model from a Go program within hours from its public release. This post dives into the internals of Ollama a popular and extremely convenient open source Go project that makes such...
22  février     15h24
Gemma, Ollama and LangChainGo
   Yesterday Google released Gemma an open LLM that folks can run locally on their machines similarly to llama . I was wondering how easy it would be to run Gemma on my computer, chat with it and interact with it from a Go program. Turns it thanks to Ollama it’s extremely ...
21  février     05h04
gemini-cli: Access Gemini models from the command-line
   This post is about a new command line tool I’ve recently built in Go gemini cli, and how to use it for LLM based data analysis with Google’s Gemini models. Background: I’ve been reading Simon Willison’s posts about LLMs with interest, especially his work on tools that leverage LLMs and SQLite to...