So … I am a ML newbie (I actually have just finished reading Jeremy Watt’s book and was able to understand some of it). Now I would like to do some computational testing, for example I have a task I need to get done and a dataset that might server to train a simple ML algorithm to do it for me. But, where should I begin with Julia?
Check out some of the machine learning packages like Flux.jl and MLDatasets.jl. The first lets you easily write neural networks (and also contains ways of building loss functions). The second provides common datasets such as MNIST, which just gives you the data in a native tensor.
From just these you can train a simple neural network to classify handwritten digits (MNIST).
If you want to experiment with general ML algorithms, then MLJ.jl is your best option.
If you’re specifically interested in neural networks, then you should indeed check out Flux.jl