nmhkahn / pytorch-exercise

Practical Exercise Codes for PyTorch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Practical Exercise Codes for PyTorch


Languages

Language:Jupyter Notebook 98.7%Language:Python 1.3%Language:Shell 0.0%