Use this seed to refactor your PyTorch research code for:
- a paper submission
- a new research project.
Read the usage instructions here
The goal of this seed is to structure ML paper-code the same so that work can easily be extended and replicated.
What it does
First, install dependencies
# clone project
git clone https://github.com/YourGithubName/Your-project-name
# install project
cd Your-project-name
pip install -e .
pip install -r requirements.txt
Next, navigate to [Your Main Contribution (MNIST here)] and run it.
# module folder
cd src/
# run module (example: mnist as your main contribution)
python simplest_mnist.py
List your modules here. Each module contains all code for a full system including how to run instructions.
List your baselines here.
@article{YourName,
title={Your Title},
author={Your team},
journal={Location},
year={Year}
}