├── .github └── workflows │ ├── ci.yml │ └── lint.yml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── configs └── starter.yml ├── cool_project ├── __init__.py ├── callbacks │ └── __init__.py ├── config.py ├── data │ ├── __init__.py │ ├── datasets │ │ └── __init__.py │ └── samplers │ │ └── __init__.py ├── dataset.py ├── losses │ ├── __init__.py │ └── focal.py ├── models │ ├── __init__.py │ └── baseline.py ├── optims │ └── __init__.py └── pipeline.py ├── data └── .gitkeep ├── notebooks └── .gitkeep ├── output └── .gitkeep ├── pyproject.toml ├── scripts └── train.py └── tests ├── __init__.py ├── components └── test_config.py └── conftest.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/README.md -------------------------------------------------------------------------------- /configs/starter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/configs/starter.yml -------------------------------------------------------------------------------- /cool_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cool_project/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/callbacks/__init__.py -------------------------------------------------------------------------------- /cool_project/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/config.py -------------------------------------------------------------------------------- /cool_project/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cool_project/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/data/datasets/__init__.py -------------------------------------------------------------------------------- /cool_project/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/data/samplers/__init__.py -------------------------------------------------------------------------------- /cool_project/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/dataset.py -------------------------------------------------------------------------------- /cool_project/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/losses/__init__.py -------------------------------------------------------------------------------- /cool_project/losses/focal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/losses/focal.py -------------------------------------------------------------------------------- /cool_project/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/models/__init__.py -------------------------------------------------------------------------------- /cool_project/models/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/models/baseline.py -------------------------------------------------------------------------------- /cool_project/optims/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/optims/__init__.py -------------------------------------------------------------------------------- /cool_project/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/cool_project/pipeline.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/scripts/train.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/components/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma7dev/deep-learning-project-template/HEAD/tests/components/test_config.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------