Neural Network julia Package
In a seris of previous posts we, described how to make a fully functional Neural Network in julia. Lets create a package so that we can import the neural network in julia as a regular package available in every session. Lets call this new package PNN. As described in this post create a directory PNN somewhere in a path. $ mkdir -p /some/path/PNN/src $ cd /some/path /some/path $ ls src Inside the src directory create a file utils.jl with the following content ...