In a seris of previous posts we, described how to make a [fully functional Neural Network][fnn] in julia. Lets create a package so that we can import the neural network in julia as a regular package тАж
Blog
Collection of blog posts on various topics on science, society programming, physics etc.
Say you wrote an ingeneous julia function ```julia magic(x) = incredible(x) ``` And you want this to be available to other people. Then the first thing to do is to create a file called `Magic.jl` тАж
After a series of [previous posts][activation-func] we hav learned the key steps of making a Machine Learning: 1. [Gradient Descent][basicnn] 2. [Back Propagation][backprop] 3. [Adding Multiple тАж
As we saw in [previous post][multinode] addition of any number of layers and any number of nodes will only be able to model a linear functions. If we want our network to also be able to learn non тАж
In the previous two posts we have already seen how to construct a single neuron neural network with or without hidden layer. If we want to input multidimensional input and get multidimensional output тАж
## Setup Similar to [last post](/posts/2022/05/basic-neural-network-with-julia/), where we made a basic neural network with just one neuron and no hidden layer, we will build a two neuron and a тАж
In this post I will try to describe building a basic regression model with gradient descent. This forms a very basic prototype of neural network. This by no means is a full fledged neural network, тАж
## Basics Every time julia starts whether it is in interactive mode or when it is used to run scripts, it runs a startup script. It is called `startup.jl`. Unless otherwise configured it is located тАж
рдЧреАрдЯ рдХрд╕рд░реА рдЪрд▓рд╛рдЙрдиреЗ
## рдкрд░рд┐рдЪрдп рдЧреАрдЯ рднрдиреЗрдХреЛ рдлрд╛рдЗрд▓рдХреЛ рднрд░реНрд╕рди рдорд┐рд▓рд╛рдЙрдиреЗ рдПрдЙрдЯрд╛ рдЕрдиреБрдкреНрд░рдпреЛрдЧ рд╣реЛред рдХреБрдиреИ рдкрдирд┐ рдкрд░рд┐рдпреЛрдЬрдирд╛рдорд╛ рдХреБрдиреИ рдлрд╛рдЗрд▓рд╣рд░реВрдХреЛ рд╡рд┐рднрд┐рдиреНрди рднрд░реНрд╕рди рд░рд╛рдЦреНрдиреБ рдкрд░реНрдЫ рднрдиреЗ рдпреЛ рдкреНрд░рдпреЛрдЧ рдЧрд░реНрджрд╛ рдзреЗрд░реИ рд╕рдЬрд┐рд▓реЛ рд╣реБрди рдЬрд╛рдиреНрдЫред ## рдХрд╕рд░реА рдкреНрд░рдпреЛрдЧ рдЧрд░реНрдиреЗ рдкрд╣рд┐рд▓рд╛ рдХреБрдиреИ тАж