├── .code_quality ├── mypy.ini └── ruff.toml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── labels.yml ├── pull_request_template.md └── workflows │ ├── automerge.yml │ ├── ci.yml │ ├── dependency-review.yml │ ├── docs.yml │ ├── labels.yml │ ├── pr-labeler.yml │ ├── pre-commit_autoupdate.yml │ └── update_template_deps.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── codecov.yml ├── cookiecutter.json ├── docs ├── data_schema.md ├── directory_hierarchy.md ├── github_actions │ ├── automerge.md │ ├── ci.md │ ├── dependency_review.md │ ├── docs.md │ ├── gh_action_pre-commit-autoupdate.md │ └── labels.md ├── index.md ├── local_setup.md ├── pre-commit.md ├── setup_tokens.md └── vscode.md ├── hooks ├── README.md └── post_gen_project.py ├── mkdocs.yml ├── pyproject.toml ├── scripts └── update_template_deps.py ├── tests ├── test_create_template.py ├── test_create_template_no_coverage.py ├── test_create_template_no_mkdocs.py └── test_create_template_python_version.py ├── uv.lock └── {{cookiecutter.repo_name}} ├── .code_quality ├── mypy.ini └── ruff.toml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── labels.yml ├── pull_request_template.md └── workflows │ ├── automerge.yml │ ├── ci.yml │ ├── dependency-review.yml │ ├── docs.yml │ ├── labels.yml │ └── pre-commit_autoupdate.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Makefile ├── README.md ├── codecov.yml ├── conf ├── __init__.py ├── config.yml ├── data_extraction │ └── __init__.py ├── data_preparation │ └── __init__.py ├── data_validation │ └── __init__.py ├── model_evaluation │ └── __init__.py ├── model_serving │ └── __init__.py ├── model_train │ └── __init__.py └── model_validation │ └── __init__.py ├── data ├── 01_raw │ └── .gitkeep ├── 02_intermediate │ └── .gitkeep ├── 03_primary │ └── .gitkeep ├── 04_feature │ └── .gitkeep ├── 05_model_input │ └── .gitkeep ├── 06_models │ └── .gitkeep ├── 07_model_output │ └── .gitkeep ├── 08_reporting │ └── .gitkeep └── README.md ├── docs ├── .gitkeep └── index.md ├── mkdocs.yml ├── models └── .gitkeep ├── notebooks ├── .gitkeep ├── 1-data │ └── .gitkeep ├── 2-exploration │ └── .gitkeep ├── 3-analysis │ └── .gitkeep ├── 4-feat_eng │ └── .gitkeep ├── 5-models │ └── .gitkeep ├── 6-interpretation │ └── .gitkeep ├── 7-deploy │ └── .gitkeep ├── 8-reports │ └── .gitkeep ├── README.md └── notebook_template.ipynb ├── pyproject.toml ├── src ├── README.md ├── __init__.py ├── data │ └── __init__.py ├── inference │ └── __init__.py ├── model │ └── __init__.py ├── pipelines │ ├── __init__.py │ ├── feature_pipeline │ │ └── __init__.py │ ├── inference_pipeline │ │ └── __init__.py │ └── training_pipeline │ │ └── __init__.py └── tmp_mock.py └── tests ├── __init__.py ├── data └── __init__.py ├── inference └── __init__.py ├── model └── __init__.py ├── pipelines ├── __init__.py ├── feature_pipeline │ └── __init__.py ├── inference_pipeline │ └── __init__.py └── training_pipeline │ └── __init__.py └── test_mock.py /.code_quality/mypy.ini: -------------------------------------------------------------------------------- 1 | ../{{cookiecutter.repo_name}}/.code_quality/mypy.ini -------------------------------------------------------------------------------- /.code_quality/ruff.toml: -------------------------------------------------------------------------------- 1 | ../{{cookiecutter.repo_name}}/.code_quality/ruff.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | {{cookiecutter.repo_name}}/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit_autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/pre-commit_autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/update_template_deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.github/workflows/update_template_deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | {{cookiecutter.repo_name}}/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | ../{{cookiecutter.repo_name}}/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | ../{{cookiecutter.repo_name}}/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | ../{{cookiecutter.repo_name}}/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/codecov.yml -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /docs/data_schema.md: -------------------------------------------------------------------------------- 1 | --8<-- "{{cookiecutter.repo_name}}/data/README.md" 2 | -------------------------------------------------------------------------------- /docs/directory_hierarchy.md: -------------------------------------------------------------------------------- 1 | --8<-- "README.md:142:220" 2 | -------------------------------------------------------------------------------- /docs/github_actions/automerge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/github_actions/automerge.md -------------------------------------------------------------------------------- /docs/github_actions/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/github_actions/ci.md -------------------------------------------------------------------------------- /docs/github_actions/dependency_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/github_actions/dependency_review.md -------------------------------------------------------------------------------- /docs/github_actions/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/github_actions/docs.md -------------------------------------------------------------------------------- /docs/github_actions/gh_action_pre-commit-autoupdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/github_actions/gh_action_pre-commit-autoupdate.md -------------------------------------------------------------------------------- /docs/github_actions/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/github_actions/labels.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/local_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/local_setup.md -------------------------------------------------------------------------------- /docs/pre-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/pre-commit.md -------------------------------------------------------------------------------- /docs/setup_tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/setup_tokens.md -------------------------------------------------------------------------------- /docs/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/docs/vscode.md -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/hooks/README.md -------------------------------------------------------------------------------- /hooks/post_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/hooks/post_gen_project.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/update_template_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/scripts/update_template_deps.py -------------------------------------------------------------------------------- /tests/test_create_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/tests/test_create_template.py -------------------------------------------------------------------------------- /tests/test_create_template_no_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/tests/test_create_template_no_coverage.py -------------------------------------------------------------------------------- /tests/test_create_template_no_mkdocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/tests/test_create_template_no_mkdocs.py -------------------------------------------------------------------------------- /tests/test_create_template_python_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/tests/test_create_template_python_version.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/uv.lock -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.code_quality/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.code_quality/mypy.ini -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.code_quality/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.code_quality/ruff.toml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.editorconfig -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/dependabot.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/labels.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/pull_request_template.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/workflows/ci.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/workflows/docs.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/workflows/labels.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.github/workflows/pre-commit_autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.github/workflows/pre-commit_autoupdate.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.pre-commit-config.yaml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.python-version: -------------------------------------------------------------------------------- 1 | {{ cookiecutter.compatible_python_versions }} 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.vscode/extensions.json -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.vscode/launch.json -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/.vscode/settings.json -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/Makefile -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/codecov.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/__init__.py: -------------------------------------------------------------------------------- 1 | """configuration files for the project.""" 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/data_extraction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/data_preparation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/data_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/model_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/model_serving/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/model_train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/conf/model_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/01_raw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/02_intermediate/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/03_primary/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/04_feature/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/05_model_input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/06_models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/07_model_output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/08_reporting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/data/README.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/docs/index.md: -------------------------------------------------------------------------------- 1 | --8<-- "README.md" 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/mkdocs.yml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/1-data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/2-exploration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/3-analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/4-feat_eng/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/5-models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/6-interpretation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/7-deploy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/8-reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/notebooks/README.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/notebooks/notebook_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/notebooks/notebook_template.ipynb -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/pyproject.toml -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/src/README.md -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/__init__.py: -------------------------------------------------------------------------------- 1 | """Source code of your project""" 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/inference/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/pipelines/feature_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/pipelines/inference_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/pipelines/training_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/src/tmp_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/src/tmp_mock.py -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Avoid ModuleNotFoundError 2 | 3 | import sys 4 | 5 | sys.path.append("./src") 6 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/inference/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/pipelines/feature_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/pipelines/inference_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/pipelines/training_pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.repo_name}}/tests/test_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoseRZapata/data-science-project-template/HEAD/{{cookiecutter.repo_name}}/tests/test_mock.py --------------------------------------------------------------------------------