AstonJ
Feel free to add general AI/ML learning material to this thread (if it is Elixir/Erlang specific, please post in one of our Learning Resources sections).
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
The obligatory hello world thread!
Who are you and where are you from? :stuck_out_tongue:
New
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
I’m posting this in response to Jose’s recent tweet (Cr. link) :
People are sleeping on Elixir for a coding harness:
Hot-code swappi...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
AstonJ
Some free beginner courses from Google:
billylanchantin
Introduction to Statistical Learning by James, Witten, Hastie, and Tibshirani is my highest recommended intro to machine learning text:
It’s where I think most folks should start if they have the requisite math background. It currently has R and Python versions (I used the R version). It was actually a goal of mine at one point to write an Elixir version, but I’ve never come back to it
I also think Deep Learning by Goodfellow, Bengio, Courville is excellent if you’re more interested in Neural Networks, specifically:
joelpaulkoch
Hugging Face courses: Hugging Face - Learn
It’s also worth checking out their (community) blog here: Hugging Face – Blog
You can search for topics and they have everything from basics to advanced. As you could expect some articles are of higher quality than others.
zacksiri
By far I feel the one that has helped me the most is this course https://www.coursera.org/specializations/machine-learning-introduction
It’s by Andrew Ng, and takes you through the math behind machine learning, step by step. I believe understanding the mathematics and why these algorithms exist is important for truly understanding machine learning.
What I did to re-enforce my learning is I would write out the code examples in Elixir using Nx.
Since I’m more comfortable in Elixir than in Python. Along the way I also get to learn and understand the different parts of Nx and what all the functions are used for.
I’ve really been enjoying this process. Even though one can simply use Scholar to do things like linear regression and logistic regression it’s still good to write out the various components so I can understand what’s going on behind those function calls.
I went from “calculus ewwww…” to “wow calculus is awesome” in the span of about 3 weeks. This was the course that made me change.
After understanding things a bit better I went back to read Machine Learning in Elixir Machine Learning in Elixir: Learning to Learn with Nx and Axon by Sean Moriarity and things started to click much much better.
joelpaulkoch
Oh that reminded me of the fastai course I followed some time ago.
It’s a series of YouTube videos and accompanying notebooks.
ds604
Here are a few articles:
Simplest Implementation of Diffusion Models
Differentiable Programming from Scratch
Exploring Neural Graphics Primitives
Why Train When You Can Optimize?
Solving Transformer by Hand: A Step-by-Step Math Example
Hacker’s guide to Neural Networks
(I kind of go for the “from scratch” manner of exposition.)
Two slightly older books are pretty good, cause they cover a lot of ground, and well-understood “greatest hits” kind of problems:
aos
I really like Neural Networks: Zero To Hero by Andrej Karpathy. I’ve recently picked up Elixir in the last few months and have been going through the series and following along using Livebook + Nx ecosystem.
jss
I wish there were more Elixir specific books. There is only one in Pragmatic Bookshelf, and none in Manning Publications.
AstonJ
It’s only a matter of time
Here’s a couple for you to get on with
jss
Thanks!