Git Product home page Git Product logo

neuralnetjokes's Introduction

#Bingo Bango Bongo

"""

  1. Tokenize text

  2. Remove infrequent words

  3. Prepend special START and END tokens. --> Learn/Tokenize the words that tend to start / end sentences.

  4. Build the training data metrics --> learn the indices of most common / remembered words.

  5. Input to model is going to be a sequence of words, a matrix X which will have a one-hot vectors which will assign the word to the given indice. Otherwise "UNKNOWN_TOKEN" to the unknown_token word.

  6. Initialize RNN Model, initialize instance variables, initialize parameters (U, V, W) --> Will implement a Theano version later...

    --> For activation function TanH(Uxt + Wst-1), it is best to initialize our parameter weights from [-1/sqrt(n) , 1/sqrt(n)]... where n is the number of incoming connections from the previous layer.

    hidden_dim => the size of our hidden layer that we choose word_dim => the size of our vocabulary

    1. Forward Propagation

      --> Predicting word probabilities...

      --> We save all hidden states in s because we need them later. Initial hidden layer initialized = 0

  7. Prediction

  8. Loss function

--> Calculate the loss, measure errors the model makes.

--> Find the parameters U, V and W that minimize the loss function for our training data.

--> (Cross Entropy Loss): if we have N training examples (words in our text) and C classes (the size of our vocabulary),
then the loss with respect to our predictions o and the true labels y is given by:
      --> L(y,o) = (- 1/N) * Sum(y'n*log(o'n))

      Implement with calculate_total_loss
  1. Back Propagation Through Time (BPTT)

"""

neuralnetjokes's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.