├── .azuredevops ├── ado-ci-pipeline-ms-hosted.yml ├── ado-ci-pipeline-self-hosted.yml └── pull_request_template.md ├── .dockerignore ├── .env.example ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── ci.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── ci-tests.sh ├── notebooks ├── .devcontainer │ ├── Dockerfile │ ├── devcontainer.json │ └── requirements.txt └── sample_notebook.py ├── pyproject.toml ├── requirements-dev.txt └── src ├── .amlignore ├── __init__.py ├── common ├── __init__.py └── requirements.txt ├── sample_cpu_project ├── .devcontainer │ ├── Dockerfile │ ├── devcontainer.json │ └── requirements.txt ├── sample_main.py └── tests │ ├── .gitkeep │ └── test_dummy.py └── sample_pytorch_gpu_project ├── .amlignore ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── requirements.txt ├── .gitignore ├── README.md ├── aml_example ├── aml_components │ ├── inference-component.yaml │ └── train-component.yaml ├── aml_setup │ ├── create-cpu-compute.yaml │ ├── create-env.yaml │ └── create-gpu-compute.yaml └── sample-aml-components-pipeline.yml ├── inference.py ├── sample_main.py ├── tests ├── .gitkeep └── test_dummy.py └── train.py /.azuredevops/ado-ci-pipeline-ms-hosted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.azuredevops/ado-ci-pipeline-ms-hosted.yml -------------------------------------------------------------------------------- /.azuredevops/ado-ci-pipeline-self-hosted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.azuredevops/ado-ci-pipeline-self-hosted.yml -------------------------------------------------------------------------------- /.azuredevops/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.azuredevops/pull_request_template.md -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.env.example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ci-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/ci-tests.sh -------------------------------------------------------------------------------- /notebooks/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/notebooks/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /notebooks/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/notebooks/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /notebooks/.devcontainer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/notebooks/.devcontainer/requirements.txt -------------------------------------------------------------------------------- /notebooks/sample_notebook.py: -------------------------------------------------------------------------------- 1 | # %% 2 | print("a") 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /src/.amlignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/.amlignore -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/requirements.txt: -------------------------------------------------------------------------------- 1 | # libraries for common modules 2 | ipykernel==7.1.0 3 | -------------------------------------------------------------------------------- /src/sample_cpu_project/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_cpu_project/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /src/sample_cpu_project/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_cpu_project/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /src/sample_cpu_project/.devcontainer/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sample_cpu_project/sample_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_cpu_project/sample_main.py -------------------------------------------------------------------------------- /src/sample_cpu_project/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sample_cpu_project/tests/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_cpu_project/tests/test_dummy.py -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/.amlignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/.amlignore -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/.devcontainer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/.devcontainer/requirements.txt -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/.gitignore: -------------------------------------------------------------------------------- 1 | mlruns 2 | outputs -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/README.md -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/aml_example/aml_components/inference-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/aml_example/aml_components/inference-component.yaml -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/aml_example/aml_components/train-component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/aml_example/aml_components/train-component.yaml -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/aml_example/aml_setup/create-cpu-compute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/aml_example/aml_setup/create-cpu-compute.yaml -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/aml_example/aml_setup/create-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/aml_example/aml_setup/create-env.yaml -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/aml_example/aml_setup/create-gpu-compute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/aml_example/aml_setup/create-gpu-compute.yaml -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/aml_example/sample-aml-components-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/aml_example/sample-aml-components-pipeline.yml -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/inference.py -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/sample_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/sample_main.py -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/tests/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/tests/test_dummy.py -------------------------------------------------------------------------------- /src/sample_pytorch_gpu_project/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dstoolkit-devcontainers/HEAD/src/sample_pytorch_gpu_project/train.py --------------------------------------------------------------------------------