Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cs Video Courses | 53,706 | 12 days ago | 14 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
Deep Learning Drizzle | 10,767 | 3 months ago | 6 | HTML | ||||||
Drench yourself in Deep Learning, Reinforcement Learning, Machine Learning, Computer Vision, and NLP by learning from these exciting lectures!! | ||||||||||
Tensorflow Tutorials | 8,644 | 2 years ago | 2 | mit | Jupyter Notebook | |||||
TensorFlow Tutorials with YouTube Videos | ||||||||||
Start Machine Learning | 3,424 | 4 days ago | 4 | mit | ||||||
A complete guide to start and improve in machine learning (ML), artificial intelligence (AI) in 2023 without ANY background in the field and stay up-to-date with the latest news and state-of-the-art techniques! | ||||||||||
Awesome System For Machine Learning | 1,904 | 23 days ago | 12 | mit | ||||||
A curated list of research in machine learning systems (MLSys). Paper notes are also provided. | ||||||||||
Ml Road | 1,478 | 2 years ago | 2 | mit | Python | |||||
Machine Learning Resources, Practice and Research | ||||||||||
Dl Colab Notebooks | 1,314 | a year ago | 11 | Jupyter Notebook | ||||||
Try out deep learning models online on Google Colab | ||||||||||
Aws Machine Learning University Accelerated Cv | 1,297 | 2 months ago | other | Jupyter Notebook | ||||||
Machine Learning University: Accelerated Computer Vision Class | ||||||||||
Yt Channels Ds Ai Ml Cs | 1,084 | 6 months ago | ||||||||
A comprehensive list of 180+ YouTube Channels for Data Science, Data Engineering, Machine Learning, Deep learning, Computer Science, programming, software engineering, etc. | ||||||||||
Freeml | 994 | 2 years ago | 2 | |||||||
A List of Data Science/Machine Learning Resources (Mostly Free) |
This is the code for "How to Do Math Easily - Intro to Deep Learning #4' by Siraj Raval on YouTube
This is the code for this video on Youtube by Siraj Raval apart of the 'Intro to Deep Learning' Udacity nanodegree course. We build a 3 layer feedforward neural network trains on a set of binary number input data and predict the binary number output.
None!
Install Jupyter notebook from here
You can either run the notebook by typing jupyter notebook
into terminal when in the directory or run the demo.py script by running python demo.py
in terminal.
The challenge for this video is to build a neural network to predict the magnitude of an Earthquake given the date, time, Latitude, and Longitude as features. This is the dataset. Optimize at least 1 hyperparameter using Random Search. See this example for more information.
You can use any library you like, bonus points are given if you do this using only numpy.
Credits for the original code go to Andrew Trask. I've merely created a wrapper to get people started.