- Make a new repository
Click this
or
Click "Use this template"
or
gh repo create (repo_name) [--public | --private] -p https://github.com/4ILab-SSU/pytorch-template.git
- Clone the Repository
- Make Anaconda3 environment and execute
conda create -n (env_name) python==3.8.0 conda activate (env_name) pip install -r requirements.txt
.
├── callbacks // here you can create your custom callbacks
├── checkpoint // were we store the trained models
├── data // here we define our dataset
│ └── transformation // custom transformation, e.g. resize and data augmentation
├── logger.py // were we define our logger
├── losses // custom losses
├── main.py
├── models // here we create our models
│ └── utils.py
├── Project.py // a class that represents the project structure
├── README.md
├── requirements.txt
└── utils.py // utilities functions