TP-NN

Posted on Thu 23 January 2020 in posts • Tagged with python, machine learning, neural network, perceptron, statistical physics

TP Neural Network

the first part of this session is to implement its own version of the perceptron and get more familiar with the practice of ML.

Multiclass Perceptron

In order to make your own perceptron, you will have to implement the following

  1. Define the softmax function
  2. PeceptronOut : return the output for each of the $K$ neurons.

  3. Continue reading