It is a framework for easy use of Pytorch. You can simply proceed with training and testing by adding the model and data loader as files. The project is basically implemented based on image classification.
|--checkpoint
| |--model0
| |--0.tar
| |--1.tar
| |--...
| |--model1
| |--model2
|--data
| |--dataset.py
| |--transform.py
|--models
| |--model1.py
| |--model2.py
| |--...
|--scripts
| |--trainer.py
| |--tester.py
| |--utils.py
|--config.yaml
|--main.py
-
checkpoint
This is the location where the model’s training file is saved.
-
config
Various parameters to be used when performing train and test are specified through the yaml file.
-
data
This is the folder where you write code to load data to be used for learning. (Data loader)
-
model
This is the directory where model files to be used are collected.
-
scripts
Code for train and test
-
main.py
This is the executable file for the framework.
git clone https://github.com/neolgu/Pytorch_Framework
Basically it uses pytorch and PyYAML.
How to install Pytorch.
pip install PyYAML
conda install PyYAML
pip install "if you want"
# data parameters
data_path: dataset location ex) E:\Dataset\archive\trainingSet
save_path: mode save location ex) checkpoint/model0
resume: False
model_name: BaseCNN (same as model in model.py)
batch_size: 16
device: cuda ex) cuda, mps, cpu
# training parameters
epoch: 3
lr: 0.0001
beta1: 0.9
beta2: 0.999
e: 1e-08
print_iter: 1000
# test parameters
model_path: checkpoint/train/2.pthFirst, copy the py file you want to use to the appropriate location.
|--data
| |--dataset.py
| |--transform.py
|--model
| |--model1.py
| |--model2.py
| |--...
if you want train.
if __name__ == '__main__':
train(config=get_config('./config.yaml'))if you want test.
if __name__ == '__main__':
test(config=get_config('./config.yaml'))You can easily use deep learning models for other tasks by modifying some of the code.
In addition to the dataloader and model described above, you can apply loss functions, optimizers, etc. implemented in pytorch or directly.