atlas news
    
Eli Bendersky’s website
13  janvier     18h02
Reverse mode Automatic Differentiation
   Automatic Differentiation AD is an important algorithm for calculating the derivatives of arbitrary functions that can be expressed by a computer program. One of my favorite CS papers is quot;Automatic differentiation in machine learning: a survey quot; by Baydin, Perlmutter, Radul and Siskind ...
31  décembre     19h05
Summary of reading: October - December 2024
   quot;Dr. Euler’s Fabulous Formula quot; by Paul J. Nahin a kind of sequel to the previous book I read by this author quot;An imaginary tale quot; . Here he collected all the interesting mathematical explorations that didn’t make the cut for that book. I found this one to be much closer to a ...
18  décembre     05h01
Implementing Raft: Part 5 - Exactly-once delivery
   This is Part in a series of posts describing the Raft distributed consensus algorithm and its complete implementation in Go. Here is a list of posts in the series: Part : Introduction Part : Elections Part : Commands and log replication Part : Persistence and optimizations Part : Key ...
22  novembre     06h00
GoMLX: ML in Go without Python
   In the previous post I talked about running ML inference in Go through a Python sidecar process. In this post, let’s see how we can accomplish the same tasks without using Python at all. How ML models are implemented Let’s start with a brief overview of how ML models are ...
11  novembre     05h13
ML in Go with a Python sidecar
   Machine learning models are rapidly becoming more capable; how can we make use of these powerful new tools in our Go applications For top of the line commercial LLMs like ChatGPT, Gemini or Claude, the models are exposed as language agnostic REST APIs. We can hand craft HTTP requests or use client...