Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tiepvupsu/dlproject_structure
- Owner: tiepvupsu
- Created: 2018-09-13T17:12:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-13T17:14:41.000Z (over 6 years ago)
- Last Synced: 2024-11-04T18:45:12.602Z (4 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 5
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```