Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tiepvupsu/dlproject_structure

Structure of a deep learning project
https://github.com/tiepvupsu/dlproject_structure

Last synced: 3 months ago
JSON representation

Structure of a deep learning project

Awesome Lists containing this project

README

        

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
```