https://github.com/thisisiron/pytorch.template
🏃♂️🏃♀️
https://github.com/thisisiron/pytorch.template
Last synced: 3 months ago
JSON representation
🏃♂️🏃♀️
- Host: GitHub
- URL: https://github.com/thisisiron/pytorch.template
- Owner: thisisiron
- Created: 2020-10-29T07:05:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-16T17:32:11.000Z (over 3 years ago)
- Last Synced: 2024-12-31T06:12:39.068Z (5 months ago)
- Language: Python
- Homepage:
- Size: 2.19 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pytorch Template Runner 🏃♂️🏃♀️
## Requirements
- Pytorch
- Albumentations
- Tensorboard
- OpenCV## Directory Structure
```
pytorch.template/
│
├── main.py -> main script to start training
│
├── config/
│ └── logging.conf
│
├── dataloaders/
│ ├── DATASET.py ->
│ └── transform.py
│
├── models/ ->
├── options/ ->
├── runners/ ->
│ └── base.py
│
└── utils/
├── logger.py
├── general.py
├── losses.py
├── meter.py
├── optims.py
├── schedulers.py
└── tensorboard.py
```## Usage
Ex. Run main.py in background
```
python main.py options/OPTS.yaml
```### Tensorboad
```
tensorbaord --bind_all --logdir LOG_DIR/
```