All Projects → nmhkahn → Pytorch Exercise

nmhkahn / Pytorch Exercise

Practical Exercise Codes for PyTorch

Projects that are alternatives of or similar to Pytorch Exercise

Wavegrad
Implementation of Google Brain's WaveGrad high-fidelity vocoder (paper: https://arxiv.org/pdf/2009.00713.pdf). First implementation on GitHub.
Stars: ✭ 245 (-2%)
Mutual labels:  jupyter-notebook
Naucse.python.cz
Website with learning materials / Stránka s učebními materiály
Stars: ✭ 248 (-0.8%)
Mutual labels:  jupyter-notebook
Coursework
summer school coursework
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Pytorch Seq2seq
Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.
Stars: ✭ 3,418 (+1267.2%)
Mutual labels:  jupyter-notebook
Mixture Density Networks For Distribution And Uncertainty Estimation
A generic Mixture Density Networks (MDN) implementation for distribution and uncertainty estimation by using Keras (TensorFlow)
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Deep Learning Machine Learning Stock
Stock for Deep Learning and Machine Learning
Stars: ✭ 240 (-4%)
Mutual labels:  jupyter-notebook
Dl tutorial
Tutorials for deep learning
Stars: ✭ 247 (-1.2%)
Mutual labels:  jupyter-notebook
Ml sagemaker studies
Case studies, examples, and exercises for learning to deploy ML models using AWS SageMaker.
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Stanford Cs231
Resources for students in the Udacity's Machine Learning Engineer Nanodegree to work through Stanford's Convolutional Neural Networks for Visual Recognition course (CS231n).
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Mixup Generator
An implementation of "mixup: Beyond Empirical Risk Minimization"
Stars: ✭ 250 (+0%)
Mutual labels:  jupyter-notebook
Epipolar Transformers
Epipolar Transformers (CVPR 2020)
Stars: ✭ 245 (-2%)
Mutual labels:  jupyter-notebook
Nodebook
Repeatable analysis plugin for Jupyter notebook
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Pytorch modelsize
Estimates the size of a PyTorch model in memory
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Faiss note
faiss wiki in chinese.
Stars: ✭ 248 (-0.8%)
Mutual labels:  jupyter-notebook
Pysolar
Pysolar is a collection of Python libraries for simulating the irradiation of any point on earth by the sun. It includes code for extremely precise ephemeris calculations.
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Talks
Stars: ✭ 247 (-1.2%)
Mutual labels:  jupyter-notebook
Cvpr2019 pyramid Feature Attention Network For Saliency Detection
code and model of Pyramid Feature Selective Network for Saliency detection
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Ml Foundation And Ml Techniques
台大机器学习课程作业详解
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Pointrend Pytorch
A PyTorch implementation of PointRend: Image Segmentation as Rendering
Stars: ✭ 249 (-0.4%)
Mutual labels:  jupyter-notebook
Drowsiness detection
Stars: ✭ 250 (+0%)
Mutual labels:  jupyter-notebook

pytorch-exercise

This repository provides some exercise codes to learn PyTorch. Since this repo doesn't provide the basic tutorial, please see after reading pytorch-exercise or Official Tutorial. NOTE: All the codes work on PyTorch 0.4.0.

Contents

1. Basics

2. CNN Applications

3. RNN Applications

Installation

Make sure you have Python 3.5 or newer version. Installing the requirements are as follow:

pip install -r requirements.txt

(Optional)

For the RNN Applications codes, Some tokenizer pacakages such as SpaCy or NLTK are needed. You need to install these packages and its English model and data.

# install SpaCy
pip install spacy
python -m spacy download en

# install NLTK
pip install nltk
python -m nltk.downloader perluniprops nonbreaking_prefixes

Visdom and torchsummary are used in utilities exercise code. Please install these packages before run it.

pip install visdom torchsummary

Getting Started

Since dataset is downloaded and preprocessed automatically in the runtime (except few exercises) simply running below start training.

python train.py

Input arguments are vary among the codes, so please check the train.py for more details.

Known issues

  1. UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 when run the text classification.
    : Please refer this issue.

Suggested Readings

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