tiepvupsu / dlproject_structure

Structure of a deep learning project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typical structure of a PyTorch project:

── READEME.md
├── data
│   └── place_data_here
└── src
    ├── config.py
    ├── csv
    │   ├── test.csv
    │   ├── train.csv
    │   └── val.csv
    ├── dataset.py
    ├── evaluate.py
    ├── loss.py
    ├── main.py
    ├── sampler.py
    ├── saved_models
    │   ├── example.t7
    │   └── save_models_here.txt
    └── train.py

About

Structure of a deep learning project


Languages

Language:Python 100.0%