Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #ai
- #graphql
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
crova
I know nothing about this subject but every time I listen to José I’m impressed by him.
José, você é o cara !
lud
I had absolutely zero knowledge in machine learning, and that was actually a pretty good introductory class, despite its goal being only to show Nx features.
kokolegorille
For those having some troubles compiling EXLA on Ubuntu 20.4, I found those commands to be helpful.
The link is because it’s looking for python, not python3.
UPDATE: This is not the recommended way, see next post. It’s just a hack to get EXLA compilation working.
Bazel is also available as a plugin for asdf-vm. You need to use 3.1.0 instead of the latest 4.0.0
And now with all in place, I need to find what to do with it
lud
For MacOs Mojave asdf wa the simplst solution for bazel too.
slouchpie
I have worked with Python for a few years and I can absolutely say this is not a good idea:
You should instead make a virtual environment and associate it with whatever directory you occupy while playing with nx.
For example, here is how I do it using
pyenv(GitHub - pyenv/pyenv: Simple Python version management · GitHub):If you have set up
pyenvproperly then being in thenx_fundirectory meanspythonautomatically points to thepython3shim for your virtual environment.It is dangerous to override system python files which are often used under-the {:exla, “~> 0.1.0-dev”, github: “elixir-nx/nx”, sparse: “exla”},
{:nx, “~> 0.1.0-dev”, github: “elixir-nx/nx”, sparse: “nx”, override: true}-hood by a surprising number of packages. I advise never touching your system python files (let
aptoryumorapkorbrewhandle those) and always use a virtual environment when you want topip install.The
bazelinstructions are good though. I also recommendasdf.Update: I got a chance to try this and I want to add something. If using
pyenv, you need to dopyenv global nx(if you followed the instructions above) in order formix deps.compile exlato find numpy. I still recommend doing it this way since you can easily switch you global python version back when you are finished playing withnx. It’s still compiling for me…kokolegorille
I am not a python guy, I will follow your advice
Thanks for reporting.
slouchpie
It took 7 hours for EXLA to compile on my laptop…
patrickdm
Ouch.. that hurts. I had to go through at least 7 attempts before successfully compiling EXLA, each time with different errors. As last hope I kept insisting on mix compile and then after three rounds of it I could get it compiled.
) and I had to try half the afternoon to get it compiled back again. The compilation process takes about 20 minutes on my machine.
I’m on Ubuntu 20.04, the successfull compilation attempt used bazel 3.2.0 through bazelisk (installed with npm) and I used python_is_python3 apt package to alias python.
An attempt to compile with cuda support destroyed a first successful build (
seanmor5
Hi,
If you all can report to me some of your compilation problems and troubleshoot steps, I can put together a comprehensive guide for building EXLA so there are no more issues. Also please note that we fortunately no longer have the NumPy dependency
lud
Is there a good article about the mechanisms used in the demo? Why do we use
dot, why is thelossfunction implemented that way, why thegradis implemented that way, etc. And why do we add a single hidden layer, and why we add it, etc.I can find a lot of tutorials that explains how to code it, just as José did, but not an article that explains the choices in a not-too-complicated way. Then there are the hard-math papers. I mean I am not a maths person ; I don’t mind diving into maths when it is necessary but all docs I found expect me to be able to reduce integrals and multiply matrices like I breathe.
I understand that maybe this topic assumes the developers have a decent math knowledge, but in the end, the code is able to predict numbers (i.e. it works) with just 2-3 math functions so that should not be that hard to grasp with a good explanation.