All Projects → sethjuarez → Pytorchintro

sethjuarez / Pytorchintro

Licence: mit
An Absolute Beginners Guide to Machine Learning with PyTorch

Projects that are alternatives of or similar to Pytorchintro

Gendis
Contains an implementation (sklearn API) of the algorithm proposed in "GENDIS: GEnetic DIscovery of Shapelets" and code to reproduce all experiments.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Keras model compression
Model Compression Based on Geoffery Hinton's Logit Regression Method in Keras applied to MNIST 16x compression over 0.95 percent accuracy.An Implementation of "Distilling the Knowledge in a Neural Network - Geoffery Hinton et. al"
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Analytics vidhya
Codes related to activities on AV including articles, hackathons and discussions.
Stars: ✭ 1,106 (+1743.33%)
Mutual labels:  jupyter-notebook
Pydata 2018
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Deep Learning 101
The tools and syntax you need to code neural networks from day one.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Intro To Nltk
Code and Notebooks for the Natural Language Processing with Python course.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Road Lane Instance Segmentation Pytorch
tuSimple dataset road lane instance segmentation with PyTorch, ROS, ENet, SegNet and Discriminative Loss.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Multimodal Short Video Dataset And Baseline Classification Model
500,000 multimodal short video data and baseline models. 50万条多模态短视频数据集和基线模型(TensorFlow2.0)。
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Learning Pandas Second Edition
Learning pandas, Second Edition, published by Packt
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Image Outpainting
🏖 Keras Implementation of Painting outside the box
Stars: ✭ 1,106 (+1743.33%)
Mutual labels:  jupyter-notebook
Applied Text Mining In Python
Repo for Applied Text Mining in Python (coursera) by University of Michigan
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Storytelling With Data
Course materials for Dartmouth Course: Storytelling with Data (PSYC 81.09).
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Feedinlib
This repository contains implementations of photovoltaic models to calculate electricity generation from a pv installation based on given solar radiation. Furthermore it contains all necessary pre-calculations.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Rastermap
A multi-dimensional embedding algorithm
Stars: ✭ 58 (-3.33%)
Mutual labels:  jupyter-notebook
Kdd2020multimodalities
KDD Cup 2020 Challenges for Modern E-Commerce Platform: Multimodalities Recall
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Content based movie recommender
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Stylist
Fast artistic style transfer with convolutional neural networks.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Fraud detection techniques
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Memory Efficient Maml
Memory efficient MAML using gradient checkpointing
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Soccer xg
A Python package for training and analyzing expected goals (xG) models in soccer.
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook

TL;DR

Do this:

  1. Clone this repo
  2. Create new codespace

New codespace

  1. Wait for the codespace container to build (takes 5-6m)

codespace build

  1. Open learn.ipynb

open notebook

  1. Run all teh things! (Hit SHIFT-ENTER in all of the cells: I closed the file explorer to get more space too)

run notebook

  1. (Other things...)
  2. Become a millionaire

(OPTIONAL)

  1. Run the training script by executing python train.py in the codespaces terminal

run script

Add an issue to the repo if something doesn't work so I can fix it!

Machine Learning Quickstart

The purpose of this brief tutorial is to get you oriented on the Machine Learning Process. Machine Learning (ML) is basically a different way of creating "code" or something that is executed much in the same way code is executed. The primary difference is that machine learning has set classes of execution paths (usually called models) that have fixed parameters that need to be "learned." For supervised learning these parameters are optimized by giving ML algorithms examples of the inputs and answers. The process usually proceeds as follows:

  1. Start with a question
  2. Find relevant data
  3. Select appropriate items from the data
  4. Choose a model type
  5. Optimize the model parameters
  6. Save model
  7. Put model into production

Local

The starting notebook shows the local approach to the Machine Learning Process. In this notebook you will find the first 5 steps outlined above but on a smaller scale (in this case the problem is small as is - generally for larger problems we begin on a small scale and then once some of the hypothesis are proved we move to large scale).

Problem

Because I am more interested that you learn the process I decided to go with the "Hello World" of Machine Learning: predicting digits.

Digit Examples

Basically, given a 28x28 pixel grayscale image, can you predict the actual handwritten number? Mathematically speaking, given a 784 sized vector of numbers between 0-255, can you return the corresponding digit?

Questions and/or Suggestions

If there is any part of this that is hard to understand please add an issue to the repo! Would love to make this super easy to understand. My personal opinion is that everyone can understand the rudiments of what is happening!

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].