├── .flake8 ├── .github └── workflows │ └── pre-commit.yaml ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── requirements-dev.txt ├── requirements-notebook.txt ├── requirements-train.txt ├── requirements.txt ├── setup.py ├── slogs └── .placeholder ├── slurm ├── notebook.slrm ├── train.slrm └── utils │ ├── report_env_config.sh │ ├── report_repo.sh │ └── report_slurm_config.sh └── template_experiment ├── __init__.py ├── __meta__.py ├── data_transformations.py ├── datasets.py ├── encoders.py ├── evaluation.py ├── io.py ├── train.py └── utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | black==25.1.0 2 | identify>=1.4.20 3 | pre-commit>=3.2.0 4 | -------------------------------------------------------------------------------- /requirements-notebook.txt: -------------------------------------------------------------------------------- 1 | jupyter[notebook] 2 | -------------------------------------------------------------------------------- /requirements-train.txt: -------------------------------------------------------------------------------- 1 | wandb 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/setup.py -------------------------------------------------------------------------------- /slogs/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slurm/notebook.slrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/slurm/notebook.slrm -------------------------------------------------------------------------------- /slurm/train.slrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/slurm/train.slrm -------------------------------------------------------------------------------- /slurm/utils/report_env_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/slurm/utils/report_env_config.sh -------------------------------------------------------------------------------- /slurm/utils/report_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/slurm/utils/report_repo.sh -------------------------------------------------------------------------------- /slurm/utils/report_slurm_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/slurm/utils/report_slurm_config.sh -------------------------------------------------------------------------------- /template_experiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/__init__.py -------------------------------------------------------------------------------- /template_experiment/__meta__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/__meta__.py -------------------------------------------------------------------------------- /template_experiment/data_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/data_transformations.py -------------------------------------------------------------------------------- /template_experiment/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/datasets.py -------------------------------------------------------------------------------- /template_experiment/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/encoders.py -------------------------------------------------------------------------------- /template_experiment/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/evaluation.py -------------------------------------------------------------------------------- /template_experiment/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/io.py -------------------------------------------------------------------------------- /template_experiment/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/train.py -------------------------------------------------------------------------------- /template_experiment/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/pytorch-experiment-template/HEAD/template_experiment/utils.py --------------------------------------------------------------------------------