The documentation / project page is very well-done, something unfortunately rare in the Julia ecosystem.
To add to that, even if Julia had excellent documentation literally everywhere and on every library, I wish there were better stack trace and meaningful error messages. Even if Julia performed 10x worse, this overlooked aspect of Julia would make up for it. It is rather unbelievable how much time I need to spend to figure out what's wrong with a particular piece of Julia code. Founders of Julia - please focus on erro…
Julia library for fast machine learning
11–20 of 40 posts
Re: Julia library for fast machine learning
#12Re: Julia library for fast machine learning
#13Re: Julia library for fast machine learning
#14The documentation / project page is very well-done, something unfortunately rare in the Julia ecosystem.
To add to that, even if Julia had excellent documentation literally everywhere and on every library, I wish there were better stack trace and meaningful error messages. Even if Julia performed 10x worse, this overlooked aspect of Julia would make up for it. It is rather unbelievable how much time I need to spend to figure out what's wrong with a particular piece of Julia code. Founders of Julia - please focus on erro…
https://julialang.org/blog/2019/03/debuggers/#debugger_and_r...
Re: Julia library for fast machine learning
#15Can someone informed give some suggestions as to compare/contrast to other tools at the intersection of probabilistic programming and deep learning? What are relative strengths and weaknesses vs edward or pyro?
Turing.jl is in an interesting spot because it is essentially a DSL-free probabilistic programming language. While it technically has a DSL of sorts given by the `@model` macro, anything that is AD-compatible can be used in this macro and since Julia's AD tools work on things written in the Julia language, this means that you can just throw code from other Julia packages into Turing and just expect AD-compatible thin…
Re: Julia library for fast machine learning
#16Looking at the examples, I still struggle with code that imports multiple libraries at the top and then uses naked function names without telling me where those functions come from.
With Julia's function overloading a function might come from multiple packages.
Re: Julia library for fast machine learning
#17The documentation / project page is very well-done, something unfortunately rare in the Julia ecosystem.
We are currently also looking for students to help us further improve the documentation and tutorials in the course of the Google summer of Docs. Some possible projects are listed here: https://julialang.org/jsoc/gsod/projects/#turing_probabilist...
Please reach out to us if you are interested.
Re: Julia library for fast machine learning
#18Looking at the examples, I still struggle with code that imports multiple libraries at the top and then uses naked function names without telling me where those functions come from.
In Julia you can `@which naked_function`. That might help. With Julia's function overloading a function might come from multiple packages.
Re: Julia library for fast machine learning
#19The documentation / project page is very well-done, something unfortunately rare in the Julia ecosystem.
To add to that, even if Julia had excellent documentation literally everywhere and on every library, I wish there were better stack trace and meaningful error messages. Even if Julia performed 10x worse, this overlooked aspect of Julia would make up for it. It is rather unbelievable how much time I need to spend to figure out what's wrong with a particular piece of Julia code. Founders of Julia - please focus on erro…
Re: Julia library for fast machine learning
#20How does this compare to gen? https://www.gen.dev/