├── .devcontainer └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── issue.md │ └── request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── deploy.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md └── website ├── .gitignore ├── README.md ├── babel.config.js ├── blog ├── 2020-10-08-run-config.md ├── 2020-10-09-run-history.md └── img │ └── logging-metrics.png ├── docs ├── cheatsheets │ ├── cli │ │ └── .gitkeep │ └── python │ │ ├── v1 │ │ ├── cheatsheet.md │ │ ├── ci-dev.md │ │ ├── compute-targets.md │ │ ├── data.md │ │ ├── debugging.md │ │ ├── distributed-training.md │ │ ├── docker-build.md │ │ ├── environment.md │ │ ├── img │ │ │ ├── compute-target.png │ │ │ ├── create-compute-1.png │ │ │ ├── create-compute-lp.png │ │ │ ├── create-compute-lp.pngZone.Identifier │ │ │ ├── create-compute-ssh.png │ │ │ ├── create-compute-ssh.pngZone.Identifier │ │ │ ├── create-compute.png │ │ │ ├── log-files.png │ │ │ ├── logging-metrics.png │ │ │ └── run-ex-sine.png │ │ ├── installation.md │ │ ├── logging.md │ │ ├── run-history.md │ │ ├── run.md │ │ ├── script-run-config.md │ │ ├── templates.md │ │ ├── troubleshooting.md │ │ └── workspace.md │ │ └── v2 │ │ └── .gitkeep ├── misc │ ├── contributing.md │ ├── deployment.md │ └── issues.md └── vs-code-snippets │ ├── python.json │ ├── readme.md │ ├── snippets-parser.py │ ├── snippets.md │ └── vs-code-snippets-demo.gif ├── docusaurus.config.js ├── i18n └── ja │ ├── code.json │ ├── docusaurus-plugin-content-docs │ ├── current.json │ └── current │ │ ├── cheatsheets │ │ ├── cli │ │ │ └── .gitkeep │ │ └── python │ │ │ ├── v1 │ │ │ ├── cheatsheet.md │ │ │ ├── ci-dev.md │ │ │ ├── compute-targets.md │ │ │ ├── data.md │ │ │ ├── debugging.md │ │ │ ├── distributed-training.md │ │ │ ├── docker-build.md │ │ │ ├── environment.md │ │ │ ├── img │ │ │ │ ├── compute-target.png │ │ │ │ ├── create-compute-1.png │ │ │ │ ├── create-compute-lp.png │ │ │ │ ├── create-compute-lp.pngZone.Identifier │ │ │ │ ├── create-compute-ssh.png │ │ │ │ ├── create-compute-ssh.pngZone.Identifier │ │ │ │ ├── create-compute.png │ │ │ │ ├── log-files.png │ │ │ │ ├── logging-metrics.png │ │ │ │ └── run-ex-sine.png │ │ │ ├── installation.md │ │ │ ├── logging.md │ │ │ ├── run-history.md │ │ │ ├── run.md │ │ │ ├── script-run-config.md │ │ │ ├── templates.md │ │ │ ├── troubleshooting.md │ │ │ └── workspace.md │ │ │ └── v2 │ │ │ └── .gitkeep │ │ ├── misc │ │ ├── contributing.md │ │ ├── deployment.md │ │ └── issues.md │ │ └── vs-code-snippets │ │ ├── python.json │ │ ├── readme.md │ │ ├── snippets-parser.py │ │ ├── snippets.md │ │ └── vs-code-snippets-demo.gif │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── package-lock.json ├── package.json ├── plugins ├── appinsights │ └── index.js └── readme.md ├── sidebars.js ├── src ├── css │ └── custom.css └── pages │ ├── index.backup │ ├── index.js │ └── styles.module.css ├── static ├── .nojekyll └── img │ ├── aml-logo.png │ ├── custom-view.png │ ├── favicon.ico │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ ├── undraw_docusaurus_tree.svg │ ├── view-metrics.png │ └── vs-code-snippets-demo.gif └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/.github/ISSUE_TEMPLATE/request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/SECURITY.md -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/blog/2020-10-08-run-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/blog/2020-10-08-run-config.md -------------------------------------------------------------------------------- /website/blog/2020-10-09-run-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/blog/2020-10-09-run-history.md -------------------------------------------------------------------------------- /website/blog/img/logging-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/blog/img/logging-metrics.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/cli/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/cheatsheet.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/ci-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/ci-dev.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/compute-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/compute-targets.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/data.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/debugging.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/distributed-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/distributed-training.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/docker-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/docker-build.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/environment.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/compute-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/compute-target.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/create-compute-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/create-compute-1.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/create-compute-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/create-compute-lp.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/create-compute-lp.pngZone.Identifier: -------------------------------------------------------------------------------- 1 | [ZoneTransfer] 2 | LastWriterPackageFamilyName=Microsoft.ScreenSketch_8wekyb3d8bbwe 3 | ZoneId=3 4 | -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/create-compute-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/create-compute-ssh.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/create-compute-ssh.pngZone.Identifier: -------------------------------------------------------------------------------- 1 | [ZoneTransfer] 2 | LastWriterPackageFamilyName=Microsoft.ScreenSketch_8wekyb3d8bbwe 3 | ZoneId=3 4 | -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/create-compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/create-compute.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/log-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/log-files.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/logging-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/logging-metrics.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/img/run-ex-sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/img/run-ex-sine.png -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/installation.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/logging.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/run-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/run-history.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/run.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/script-run-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/script-run-config.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/templates.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/troubleshooting.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v1/workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/cheatsheets/python/v1/workspace.md -------------------------------------------------------------------------------- /website/docs/cheatsheets/python/v2/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /website/docs/misc/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/misc/contributing.md -------------------------------------------------------------------------------- /website/docs/misc/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/misc/deployment.md -------------------------------------------------------------------------------- /website/docs/misc/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/misc/issues.md -------------------------------------------------------------------------------- /website/docs/vs-code-snippets/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/vs-code-snippets/python.json -------------------------------------------------------------------------------- /website/docs/vs-code-snippets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/vs-code-snippets/readme.md -------------------------------------------------------------------------------- /website/docs/vs-code-snippets/snippets-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/vs-code-snippets/snippets-parser.py -------------------------------------------------------------------------------- /website/docs/vs-code-snippets/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/vs-code-snippets/snippets.md -------------------------------------------------------------------------------- /website/docs/vs-code-snippets/vs-code-snippets-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docs/vs-code-snippets/vs-code-snippets-demo.gif -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/i18n/ja/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/code.json -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/cli/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/cheatsheet.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/ci-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/ci-dev.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/compute-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/compute-targets.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/data.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/debugging.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/distributed-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/distributed-training.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/docker-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/docker-build.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/environment.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/compute-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/compute-target.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-1.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-lp.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-lp.pngZone.Identifier: -------------------------------------------------------------------------------- 1 | [ZoneTransfer] 2 | LastWriterPackageFamilyName=Microsoft.ScreenSketch_8wekyb3d8bbwe 3 | ZoneId=3 4 | -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-ssh.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute-ssh.pngZone.Identifier: -------------------------------------------------------------------------------- 1 | [ZoneTransfer] 2 | LastWriterPackageFamilyName=Microsoft.ScreenSketch_8wekyb3d8bbwe 3 | ZoneId=3 4 | -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/create-compute.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/log-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/log-files.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/logging-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/logging-metrics.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/run-ex-sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/img/run-ex-sine.png -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/installation.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/logging.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/run-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/run-history.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/run.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/script-run-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/script-run-config.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/templates.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/troubleshooting.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v1/workspace.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/cheatsheets/python/v2/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/misc/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/misc/contributing.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/misc/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/misc/deployment.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/misc/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/misc/issues.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/python.json -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/readme.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/snippets-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/snippets-parser.py -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/snippets.md -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/vs-code-snippets-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-plugin-content-docs/current/vs-code-snippets/vs-code-snippets-demo.gif -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /website/i18n/ja/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/i18n/ja/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/package.json -------------------------------------------------------------------------------- /website/plugins/appinsights/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/plugins/appinsights/index.js -------------------------------------------------------------------------------- /website/plugins/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/plugins/readme.md -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/src/pages/index.backup -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/src/pages/styles.module.css -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/aml-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/aml-logo.png -------------------------------------------------------------------------------- /website/static/img/custom-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/custom-view.png -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /website/static/img/view-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/view-metrics.png -------------------------------------------------------------------------------- /website/static/img/vs-code-snippets-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/static/img/vs-code-snippets-demo.gif -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azureml-cheatsheets/HEAD/website/yarn.lock --------------------------------------------------------------------------------