All Projects → savarin → Neural Networks

savarin / Neural Networks

brief introduction to Python for neural networks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Neural Networks

Udacity Deep Learning Nanodegree
This is just a collection of projects that made during my DEEPLEARNING NANODEGREE by UDACITY
Stars: ✭ 15 (-81.71%)
Mutual labels:  jupyter-notebook, neural-networks
Yann
This toolbox is support material for the book on CNN (http://www.convolution.network).
Stars: ✭ 41 (-50%)
Mutual labels:  jupyter-notebook, neural-networks
Deep learning projects
Stars: ✭ 28 (-65.85%)
Mutual labels:  jupyter-notebook, neural-networks
Py Style Transfer
🎨 Artistic neural style transfer with tweaks (pytorch).
Stars: ✭ 23 (-71.95%)
Mutual labels:  jupyter-notebook, neural-networks
Convisualize nb
Visualisations for Convolutional Neural Networks in Pytorch
Stars: ✭ 57 (-30.49%)
Mutual labels:  jupyter-notebook, neural-networks
Sentence Aspect Category Detection
Aspect-Based Sentiment Analysis
Stars: ✭ 24 (-70.73%)
Mutual labels:  jupyter-notebook, neural-networks
Bipropagation
Stars: ✭ 41 (-50%)
Mutual labels:  jupyter-notebook, neural-networks
Machine Learning
머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고자 만든 repository입니다. (This repository is intented for helping whom are interested in machine learning study)
Stars: ✭ 705 (+759.76%)
Mutual labels:  jupyter-notebook, neural-networks
Mish
Official Repsoitory for "Mish: A Self Regularized Non-Monotonic Neural Activation Function" [BMVC 2020]
Stars: ✭ 1,072 (+1207.32%)
Mutual labels:  jupyter-notebook, neural-networks
Mckinsey Smartcities Traffic Prediction
Adventure into using multi attention recurrent neural networks for time-series (city traffic) for the 2017-11-18 McKinsey IronMan (24h non-stop) prediction challenge
Stars: ✭ 49 (-40.24%)
Mutual labels:  jupyter-notebook, neural-networks
Daily Neural Network Practice 2
Daily Dose of Neural Network that Everyone Needs
Stars: ✭ 18 (-78.05%)
Mutual labels:  jupyter-notebook, neural-networks
Mit Deep Learning
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Stars: ✭ 8,912 (+10768.29%)
Mutual labels:  jupyter-notebook, neural-networks
Awesome Ai Ml Dl
Awesome Artificial Intelligence, Machine Learning and Deep Learning as we learn it. Study notes and a curated list of awesome resources of such topics.
Stars: ✭ 831 (+913.41%)
Mutual labels:  jupyter-notebook, neural-networks
Traffic Sign Classifier
Udacity Self-Driving Car Engineer Nanodegree. Project: Build a Traffic Sign Recognition Classifier
Stars: ✭ 12 (-85.37%)
Mutual labels:  jupyter-notebook, neural-networks
Basic reinforcement learning
An introductory series to Reinforcement Learning (RL) with comprehensive step-by-step tutorials.
Stars: ✭ 826 (+907.32%)
Mutual labels:  jupyter-notebook, neural-networks
Teacher Student Training
This repository stores the files used for my summer internship's work on "teacher-student learning", an experimental method for training deep neural networks using a trained teacher model.
Stars: ✭ 34 (-58.54%)
Mutual labels:  jupyter-notebook, neural-networks
Tensorflow 101
TensorFlow 101: Introduction to Deep Learning for Python Within TensorFlow
Stars: ✭ 642 (+682.93%)
Mutual labels:  jupyter-notebook, neural-networks
Sciblog support
Support content for my blog
Stars: ✭ 694 (+746.34%)
Mutual labels:  jupyter-notebook, neural-networks
Machine Learning From Scratch
Succinct Machine Learning algorithm implementations from scratch in Python, solving real-world problems (Notebooks and Book). Examples of Logistic Regression, Linear Regression, Decision Trees, K-means clustering, Sentiment Analysis, Recommender Systems, Neural Networks and Reinforcement Learning.
Stars: ✭ 42 (-48.78%)
Mutual labels:  jupyter-notebook, neural-networks
Lovaszsoftmax
Code for the Lovász-Softmax loss (CVPR 2018)
Stars: ✭ 1,148 (+1300%)
Mutual labels:  jupyter-notebook, neural-networks

Neural Networks in a Nutshell

Installation Notes

This tutorial requires tensorflow, keras and IPython with the IPython Notebook. These can be installed with pip by typing the following in Terminal:

pip install --upgrade pip
pip install scipy
pip install numpy pandas sklearn ipython matplotlib
pip install tensorflow keras
pip install jupyter

Next, clone the material in this tutorial using git as follows:

git clone https://github.com/savarin/neural-networks.git

We will be reviewing the materials with the IPython Notebook. You should be able to type

jupyter notebook

in your terminal window and see the notebook panel load in your web browser.

Presentation Format

This tutorial is designed to get the audience training neural networks at the end of a 1-hour session. In particular, it covers areas where neural networks really shines - CNNs and RNNs. These techniques are applied on the Kaggle Titanic, MNIST and Rotten Tomatoes datasets.

Credits

Special thanks for the excellent materials by Andrej Karpathy and the CS231n teaching staff, Chris Olah and Denny Britz (do check out their posts!), as well as the teams at Google TensorFlow, Keras and Kaggle.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].