Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mineflayer | 3,639 | 68 | 65 | 6 hours ago | 149 | August 14, 2022 | 257 | mit | JavaScript | |
Create Minecraft bots with a powerful, stable, and high level JavaScript API. | ||||||||||
Docker Tutorial | 1,224 | 4 months ago | 6 | mit | Python | |||||
Docker 基本教學 - 從無到有 Docker-Beginners-Guide 教你用 Docker 建立 Django + PostgreSQL 📝 | ||||||||||
Neural Networks Demystified | 1,161 | 3 years ago | 8 | Jupyter Notebook | ||||||
Supporting code for short YouTube series Neural Networks Demystified. | ||||||||||
Jeelizar | 338 | a year ago | apache-2.0 | JavaScript | ||||||
JavaScript object detection lightweight library for augmented reality (WebXR demos included). It uses convolutional neural networks running on the GPU with WebGL. | ||||||||||
Convolutional_neural_network | 337 | 4 years ago | 7 | Jupyter Notebook | ||||||
This is the code for "Convolutional Neural Networks - The Math of Intelligence (Week 4)" By Siraj Raval on Youtube | ||||||||||
Make_a_neural_network | 196 | 4 years ago | 13 | Python | ||||||
This is the code for the "Make a Neural Network" - Intro to Deep Learning #2 by Siraj Raval on Youtube | ||||||||||
Lstm_networks | 176 | 4 years ago | 5 | Jupyter Notebook | ||||||
This is the code for "LSTM Networks - The Math of Intelligence (Week 8)" By Siraj Raval on Youtube | ||||||||||
Recurrent_neural_network | 143 | 4 years ago | 2 | bsd-2-clause | Jupyter Notebook | |||||
This is the code for "Recurrent Neural Networks - The Math of Intelligence (Week 5)" By Siraj Raval on Youtube | ||||||||||
Deep Learning Resources | 138 | 3 years ago | 1 | mit | ||||||
A Collection of resources I have found useful on my journey finding my way through the world of Deep Learning. | ||||||||||
Pythonnnexample | 126 | 4 years ago | HTML | |||||||
Annotations for the Sirajology Python NN Example. This code comes from a demo NN program from the YouTube video https://youtu.be/h3l4qz76JhQ. The program creates an neural network that simulates the exclusive OR function with two inputs and one output. |
This is the code for this video on Youtube by Siraj Raval as part of The Math of Intelligence course. A convolutional neural network implemented in pure numpy. It uses a MNIST-like dataset with about 30 alphanumeric symbols. The author trained a deep convolutional network using Keras and saved the weights using python's pickle utility. Only the the forward propagation code is rewritten in pure numpy (as opposed to Theano or Tensorflow as in Keras). Which lets us run the network as a demo via heroku. For backpropagation in numpy for a convnet see this
Live web app is here: Website
Dependencies are packaged in the flask folder, so this app does not have any external depencies. Run pip install -r requirements.txt
to install them.
Install pip here.
to start the web app run python run.py
. To start the notebook run jupyter notebook
in terminal.
Install jupyter here.
Credits for this code go to greydanus. I've merely created a wrapper to get people started.