├── .dockerignore ├── .editorconfig ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 01_bug-report.md │ ├── 02_feature-request.md │ ├── 03_documentation.md │ ├── 04_deployment-problem.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── actions │ └── build-environment │ │ ├── Dockerfile │ │ └── action.yml ├── pr-labeler-branch-prefix.yml ├── pr-labeler-file-path.yml ├── release-drafter.yml └── workflows │ ├── build-pipeline.yml │ ├── close-stale-issues.yml │ ├── pr-labeler.yml │ └── release-pipeline.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── deployment ├── google-cloud-run │ ├── Dockerfile │ └── README.md └── play-with-docker │ ├── README.md │ └── docker-compose.yml ├── docs ├── images │ ├── features │ │ ├── access-port.png │ │ ├── desktop-vnc-clipboard.png │ │ ├── desktop-vnc.png │ │ ├── file-sharing-filebrowser.png │ │ ├── file-sharing-open.png │ │ ├── git-configuration.png │ │ ├── git-jupytext.png │ │ ├── git-nbdime-merging.png │ │ ├── git-open.png │ │ ├── git-push-notebook.png │ │ ├── git-ungit-credentials.png │ │ ├── hardware-monitoring-glances.png │ │ ├── hardware-monitoring-netdata.png │ │ ├── jupyter-notebook.png │ │ ├── jupyter-tree.png │ │ ├── jupyterlab.png │ │ ├── open-tools.png │ │ ├── remote-dev-jupyter-kernel.png │ │ ├── remote-dev-vscode.gif │ │ ├── ssh-access.png │ │ ├── tensorboard-dashboard.png │ │ ├── tensorboard-open.png │ │ ├── vs-code-open.png │ │ └── vs-code.png │ └── ml-workspace-logo.png └── update-workspace-image.md ├── gpu-flavor ├── .dockerignore ├── Dockerfile ├── README.md └── build.py └── resources ├── 5xx.html ├── branding ├── bg_ml_foundation.png ├── favicon.ico ├── logo.png └── ml-workspace-logo.svg ├── config ├── 90assumeyes └── xrdp.ini ├── docker-entrypoint.py ├── home ├── .chromium-browser.init ├── .config │ ├── Code │ │ └── User │ │ │ ├── settings.json │ │ │ └── state │ │ │ └── global.json │ ├── flake8 │ ├── gtk-3.0 │ │ └── bookmarks │ ├── mimeapps.list │ └── xfce4 │ │ ├── panel │ │ ├── launcher-10 │ │ │ └── 15633090862.desktop │ │ └── launcher-12 │ │ │ └── 15633090451.desktop │ │ └── xfconf │ │ └── xfce-perchannel-xml │ │ ├── thunar.xml │ │ ├── xfce4-desktop.xml │ │ ├── xfce4-keyboard-shortcuts.xml │ │ ├── xfce4-panel.xml │ │ ├── xfwm4.xml │ │ └── xsettings.xml ├── .workspace │ └── tools │ │ ├── 01-novnc.json │ │ ├── 02-ungit.json │ │ ├── 03-jupyterlab.json │ │ ├── 04-vscode.json │ │ ├── 05-terminal.json │ │ ├── 06-netdata.json │ │ ├── 07-glances.json │ │ ├── 08-filebrowser.json │ │ ├── 09-access-port.json │ │ ├── 10-ssh-access.json │ │ └── 11-install-tool.json └── Desktop │ └── chromium-browser.desktop ├── icons ├── glances-icon.png ├── jupyter-icon.png ├── jupyterlab-icon.png ├── netdata-icon-new.png ├── netdata-icon.png ├── spyder-icon.png └── ungit-icon.png ├── jupyter ├── extensions │ └── tooling-extension │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── jupyter_tooling │ │ ├── __init__.py │ │ ├── open-tools-widget.js │ │ ├── setup_templates │ │ │ ├── README.md │ │ │ └── client_command.txt │ │ ├── tooling-notebook-widget.js │ │ ├── tooling-shared-components.js │ │ ├── tooling-tree-widget.js │ │ └── tooling_handler.py │ │ └── setup.py ├── ipython_config.py ├── jupyter_notebook_config.json ├── jupyter_notebook_config.py ├── nbconfig │ ├── common.json │ ├── edit.json │ ├── notebook.json │ └── tree.json ├── plugin.jupyterlab-settings ├── sidebar.jupyterlab-settings ├── start-notebook.sh ├── start-singleuser.sh ├── start.sh └── tensorboard_notebook_patch.py ├── libraries ├── requirements-full.txt ├── requirements-light.txt └── requirements-minimal.txt ├── licenses ├── dpkg-package-licenses.txt ├── python-package-licenses-overview.md └── python-package-licenses.json ├── netdata ├── cloud.conf ├── go.d.conf ├── netdata.conf └── python.d.conf ├── nginx ├── lua-extensions │ ├── lua-resty-http │ │ ├── README.md │ │ └── resty │ │ │ ├── http.lua │ │ │ └── http_headers.lua │ └── lua-resty-string │ │ ├── README.md │ │ └── resty │ │ ├── aes.lua │ │ ├── md5.lua │ │ ├── random.lua │ │ ├── sha.lua │ │ ├── sha1.lua │ │ ├── sha224.lua │ │ ├── sha256.lua │ │ ├── sha384.lua │ │ ├── sha512.lua │ │ └── string.lua └── nginx.conf ├── novnc ├── app │ └── ui.js └── vnc.html ├── reports ├── clamav-virus-scan.txt ├── docker-snyk-scan.txt ├── dpkg-package-sizes.txt ├── environment-variables.txt ├── largest-files-and-folders.txt ├── largest-files.txt ├── largest-root-folders.txt ├── python-package-conflicts.txt ├── python-package-sizes.txt ├── python-package-tree.txt ├── python-safety-scan.txt └── trivy-vulnerability-scan.txt ├── scripts ├── backup_restore_config.py ├── check_xfdesktop_leak.py ├── clean-layer.sh ├── configure_cron_scripts.py ├── configure_nginx.py ├── configure_ssh.py ├── configure_tools.py ├── execute_code.py ├── fix-permissions.sh ├── restart-jupyter.sh ├── run_custom_scripts.py ├── run_workspace.py ├── setup-certs.sh └── start-vnc-server.sh ├── ssh ├── ssh_config └── sshd_config ├── supervisor ├── programs │ ├── cron.conf │ ├── filebrowser.conf │ ├── glances.conf │ ├── jupyter.conf │ ├── netdata.conf │ ├── nginx.conf │ ├── novnc.conf │ ├── rsyslog.conf │ ├── sshd.conf │ ├── sslh.conf │ ├── ungit.conf │ ├── vncserver.conf │ └── vscode.conf └── supervisord.conf ├── tests ├── evaluate-py-libraries.ipynb ├── log-environment-info.sh ├── ml-job │ ├── __main__.py │ ├── environment.yml │ ├── requirements.txt │ └── setup.sh ├── ml-service │ ├── __main__.py │ └── requirements.txt ├── requirements-full-updated.txt ├── scan-clamav-virus.sh ├── scan-python-vulnerabilities.sh ├── scan-trivy-vulnerabilities.sh ├── test-code-execution.py ├── test-tool-installers.ipynb └── test_workspace.py ├── tools ├── alacritty-terminal.sh ├── atom.sh ├── azure-data-studio.sh ├── azure-utils.sh ├── beakerx.sh ├── cuda-10-0.sh ├── data-utils.sh ├── dbeaver.sh ├── dev-utils.sh ├── docker-utils.sh ├── emacs.sh ├── embedding-projector.sh ├── fasttext.sh ├── filebrowser.sh ├── filezilla.sh ├── firefox.sh ├── flink-local-cluster.sh ├── git-kraken.sh ├── git-lfs.sh ├── go-interpreter.sh ├── gpuview.sh ├── gui-tools.sh ├── hadoop-local-cluster.sh ├── hyper-terminal.sh ├── intellij.sh ├── java-runtime.sh ├── java-utils.sh ├── kubernetes-utils.sh ├── label-studio.sh ├── metabase.sh ├── minio-mc.sh ├── netdata.sh ├── netron.sh ├── nteract.sh ├── oh-my-zsh.sh ├── omnidb.sh ├── pgadmin.sh ├── portainer.sh ├── postman.sh ├── pycharm.sh ├── python-27.sh ├── r-runtime.sh ├── rapids-gpu.sh ├── robo3t.sh ├── ruby-interpreter.sh ├── scala-utils.sh ├── sent2vec.sh ├── spark-local-cluster.sh ├── sqlectron.sh ├── tilix-terminal.sh ├── ungit.sh ├── vs-code-desktop.sh ├── vs-code-server.sh ├── xrdp.sh └── zeppelin.sh └── tutorials ├── tutorials ├── images │ ├── jupyter-basics-animation.m4v │ ├── jupyter-basics-logo.png │ └── jupyter-basics-python-logo.svg ├── jupyter-basics-tutorial.ipynb ├── jupyter-tipps.ipynb ├── numpy-tutorial.ipynb ├── pandas-tutorial.ipynb ├── python-basics-tutorial.ipynb ├── visualization-tutorial.ipynb └── workspace-test-utilities.ipynb └── welcome.ipynb /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/ISSUE_TEMPLATE/01_bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/ISSUE_TEMPLATE/02_feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/ISSUE_TEMPLATE/03_documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_deployment-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/ISSUE_TEMPLATE/04_deployment-problem.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/ISSUE_TEMPLATE/05_anything-else.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/actions/build-environment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/actions/build-environment/Dockerfile -------------------------------------------------------------------------------- /.github/actions/build-environment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/actions/build-environment/action.yml -------------------------------------------------------------------------------- /.github/pr-labeler-branch-prefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/pr-labeler-branch-prefix.yml -------------------------------------------------------------------------------- /.github/pr-labeler-file-path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/pr-labeler-file-path.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/workflows/build-pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/workflows/close-stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/workflows/pr-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.github/workflows/release-pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deployment/google-cloud-run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/deployment/google-cloud-run/Dockerfile -------------------------------------------------------------------------------- /deployment/google-cloud-run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/deployment/google-cloud-run/README.md -------------------------------------------------------------------------------- /deployment/play-with-docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/deployment/play-with-docker/README.md -------------------------------------------------------------------------------- /deployment/play-with-docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/deployment/play-with-docker/docker-compose.yml -------------------------------------------------------------------------------- /docs/images/features/access-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/access-port.png -------------------------------------------------------------------------------- /docs/images/features/desktop-vnc-clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/desktop-vnc-clipboard.png -------------------------------------------------------------------------------- /docs/images/features/desktop-vnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/desktop-vnc.png -------------------------------------------------------------------------------- /docs/images/features/file-sharing-filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/file-sharing-filebrowser.png -------------------------------------------------------------------------------- /docs/images/features/file-sharing-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/file-sharing-open.png -------------------------------------------------------------------------------- /docs/images/features/git-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/git-configuration.png -------------------------------------------------------------------------------- /docs/images/features/git-jupytext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/git-jupytext.png -------------------------------------------------------------------------------- /docs/images/features/git-nbdime-merging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/git-nbdime-merging.png -------------------------------------------------------------------------------- /docs/images/features/git-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/git-open.png -------------------------------------------------------------------------------- /docs/images/features/git-push-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/git-push-notebook.png -------------------------------------------------------------------------------- /docs/images/features/git-ungit-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/git-ungit-credentials.png -------------------------------------------------------------------------------- /docs/images/features/hardware-monitoring-glances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/hardware-monitoring-glances.png -------------------------------------------------------------------------------- /docs/images/features/hardware-monitoring-netdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/hardware-monitoring-netdata.png -------------------------------------------------------------------------------- /docs/images/features/jupyter-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/jupyter-notebook.png -------------------------------------------------------------------------------- /docs/images/features/jupyter-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/jupyter-tree.png -------------------------------------------------------------------------------- /docs/images/features/jupyterlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/jupyterlab.png -------------------------------------------------------------------------------- /docs/images/features/open-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/open-tools.png -------------------------------------------------------------------------------- /docs/images/features/remote-dev-jupyter-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/remote-dev-jupyter-kernel.png -------------------------------------------------------------------------------- /docs/images/features/remote-dev-vscode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/remote-dev-vscode.gif -------------------------------------------------------------------------------- /docs/images/features/ssh-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/ssh-access.png -------------------------------------------------------------------------------- /docs/images/features/tensorboard-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/tensorboard-dashboard.png -------------------------------------------------------------------------------- /docs/images/features/tensorboard-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/tensorboard-open.png -------------------------------------------------------------------------------- /docs/images/features/vs-code-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/vs-code-open.png -------------------------------------------------------------------------------- /docs/images/features/vs-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/features/vs-code.png -------------------------------------------------------------------------------- /docs/images/ml-workspace-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/images/ml-workspace-logo.png -------------------------------------------------------------------------------- /docs/update-workspace-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/docs/update-workspace-image.md -------------------------------------------------------------------------------- /gpu-flavor/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/gpu-flavor/.dockerignore -------------------------------------------------------------------------------- /gpu-flavor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/gpu-flavor/Dockerfile -------------------------------------------------------------------------------- /gpu-flavor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/gpu-flavor/README.md -------------------------------------------------------------------------------- /gpu-flavor/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/gpu-flavor/build.py -------------------------------------------------------------------------------- /resources/5xx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/5xx.html -------------------------------------------------------------------------------- /resources/branding/bg_ml_foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/branding/bg_ml_foundation.png -------------------------------------------------------------------------------- /resources/branding/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/branding/favicon.ico -------------------------------------------------------------------------------- /resources/branding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/branding/logo.png -------------------------------------------------------------------------------- /resources/branding/ml-workspace-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/branding/ml-workspace-logo.svg -------------------------------------------------------------------------------- /resources/config/90assumeyes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/config/90assumeyes -------------------------------------------------------------------------------- /resources/config/xrdp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/config/xrdp.ini -------------------------------------------------------------------------------- /resources/docker-entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/docker-entrypoint.py -------------------------------------------------------------------------------- /resources/home/.chromium-browser.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.chromium-browser.init -------------------------------------------------------------------------------- /resources/home/.config/Code/User/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/Code/User/settings.json -------------------------------------------------------------------------------- /resources/home/.config/Code/User/state/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/Code/User/state/global.json -------------------------------------------------------------------------------- /resources/home/.config/flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E203,E501,W503 3 | -------------------------------------------------------------------------------- /resources/home/.config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- 1 | file:///workspace -------------------------------------------------------------------------------- /resources/home/.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/mimeapps.list -------------------------------------------------------------------------------- /resources/home/.config/xfce4/panel/launcher-10/15633090862.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/panel/launcher-10/15633090862.desktop -------------------------------------------------------------------------------- /resources/home/.config/xfce4/panel/launcher-12/15633090451.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/panel/launcher-12/15633090451.desktop -------------------------------------------------------------------------------- /resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /resources/home/.workspace/tools/01-novnc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/01-novnc.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/02-ungit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/02-ungit.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/03-jupyterlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/03-jupyterlab.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/04-vscode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/04-vscode.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/05-terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/05-terminal.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/06-netdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/06-netdata.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/07-glances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/07-glances.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/08-filebrowser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/08-filebrowser.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/09-access-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/09-access-port.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/10-ssh-access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/10-ssh-access.json -------------------------------------------------------------------------------- /resources/home/.workspace/tools/11-install-tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/.workspace/tools/11-install-tool.json -------------------------------------------------------------------------------- /resources/home/Desktop/chromium-browser.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/home/Desktop/chromium-browser.desktop -------------------------------------------------------------------------------- /resources/icons/glances-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/glances-icon.png -------------------------------------------------------------------------------- /resources/icons/jupyter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/jupyter-icon.png -------------------------------------------------------------------------------- /resources/icons/jupyterlab-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/jupyterlab-icon.png -------------------------------------------------------------------------------- /resources/icons/netdata-icon-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/netdata-icon-new.png -------------------------------------------------------------------------------- /resources/icons/netdata-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/netdata-icon.png -------------------------------------------------------------------------------- /resources/icons/spyder-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/spyder-icon.png -------------------------------------------------------------------------------- /resources/icons/ungit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/icons/ungit-icon.png -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include jupyter_tooling/setup_templates *.txt 2 | -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/README.md -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/open-tools-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/open-tools-widget.js -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/setup_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/setup_templates/README.md -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/setup_templates/client_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/setup_templates/client_command.txt -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling-notebook-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling-notebook-widget.js -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling-shared-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling-shared-components.js -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling-tree-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling-tree-widget.js -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/jupyter_tooling/tooling_handler.py -------------------------------------------------------------------------------- /resources/jupyter/extensions/tooling-extension/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/extensions/tooling-extension/setup.py -------------------------------------------------------------------------------- /resources/jupyter/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/ipython_config.py -------------------------------------------------------------------------------- /resources/jupyter/jupyter_notebook_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/jupyter_notebook_config.json -------------------------------------------------------------------------------- /resources/jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/jupyter_notebook_config.py -------------------------------------------------------------------------------- /resources/jupyter/nbconfig/common.json: -------------------------------------------------------------------------------- 1 | {"nbext_hide_incompat": false} 2 | -------------------------------------------------------------------------------- /resources/jupyter/nbconfig/edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/nbconfig/edit.json -------------------------------------------------------------------------------- /resources/jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /resources/jupyter/nbconfig/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/nbconfig/tree.json -------------------------------------------------------------------------------- /resources/jupyter/plugin.jupyterlab-settings: -------------------------------------------------------------------------------- 1 | {"enabled": true} -------------------------------------------------------------------------------- /resources/jupyter/sidebar.jupyterlab-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/sidebar.jupyterlab-settings -------------------------------------------------------------------------------- /resources/jupyter/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/start-notebook.sh -------------------------------------------------------------------------------- /resources/jupyter/start-singleuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/start-singleuser.sh -------------------------------------------------------------------------------- /resources/jupyter/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/start.sh -------------------------------------------------------------------------------- /resources/jupyter/tensorboard_notebook_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/jupyter/tensorboard_notebook_patch.py -------------------------------------------------------------------------------- /resources/libraries/requirements-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/libraries/requirements-full.txt -------------------------------------------------------------------------------- /resources/libraries/requirements-light.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/libraries/requirements-light.txt -------------------------------------------------------------------------------- /resources/libraries/requirements-minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/libraries/requirements-minimal.txt -------------------------------------------------------------------------------- /resources/licenses/dpkg-package-licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/licenses/dpkg-package-licenses.txt -------------------------------------------------------------------------------- /resources/licenses/python-package-licenses-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/licenses/python-package-licenses-overview.md -------------------------------------------------------------------------------- /resources/licenses/python-package-licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/licenses/python-package-licenses.json -------------------------------------------------------------------------------- /resources/netdata/cloud.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | enabled = no 3 | -------------------------------------------------------------------------------- /resources/netdata/go.d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/netdata/go.d.conf -------------------------------------------------------------------------------- /resources/netdata/netdata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/netdata/netdata.conf -------------------------------------------------------------------------------- /resources/netdata/python.d.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/netdata/python.d.conf -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-http/README.md -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-http/resty/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-http/resty/http.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-http/resty/http_headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-http/resty/http_headers.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/README.md -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/aes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/aes.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/md5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/md5.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/random.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/sha.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/sha.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/sha1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/sha1.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/sha224.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/sha224.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/sha256.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/sha256.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/sha384.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/sha384.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/sha512.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/sha512.lua -------------------------------------------------------------------------------- /resources/nginx/lua-extensions/lua-resty-string/resty/string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/lua-extensions/lua-resty-string/resty/string.lua -------------------------------------------------------------------------------- /resources/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/nginx/nginx.conf -------------------------------------------------------------------------------- /resources/novnc/app/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/novnc/app/ui.js -------------------------------------------------------------------------------- /resources/novnc/vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/novnc/vnc.html -------------------------------------------------------------------------------- /resources/reports/clamav-virus-scan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/clamav-virus-scan.txt -------------------------------------------------------------------------------- /resources/reports/docker-snyk-scan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/docker-snyk-scan.txt -------------------------------------------------------------------------------- /resources/reports/dpkg-package-sizes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/dpkg-package-sizes.txt -------------------------------------------------------------------------------- /resources/reports/environment-variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/environment-variables.txt -------------------------------------------------------------------------------- /resources/reports/largest-files-and-folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/largest-files-and-folders.txt -------------------------------------------------------------------------------- /resources/reports/largest-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/largest-files.txt -------------------------------------------------------------------------------- /resources/reports/largest-root-folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/largest-root-folders.txt -------------------------------------------------------------------------------- /resources/reports/python-package-conflicts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/python-package-conflicts.txt -------------------------------------------------------------------------------- /resources/reports/python-package-sizes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/python-package-sizes.txt -------------------------------------------------------------------------------- /resources/reports/python-package-tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/python-package-tree.txt -------------------------------------------------------------------------------- /resources/reports/python-safety-scan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/python-safety-scan.txt -------------------------------------------------------------------------------- /resources/reports/trivy-vulnerability-scan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/reports/trivy-vulnerability-scan.txt -------------------------------------------------------------------------------- /resources/scripts/backup_restore_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/backup_restore_config.py -------------------------------------------------------------------------------- /resources/scripts/check_xfdesktop_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/check_xfdesktop_leak.py -------------------------------------------------------------------------------- /resources/scripts/clean-layer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/clean-layer.sh -------------------------------------------------------------------------------- /resources/scripts/configure_cron_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/configure_cron_scripts.py -------------------------------------------------------------------------------- /resources/scripts/configure_nginx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/configure_nginx.py -------------------------------------------------------------------------------- /resources/scripts/configure_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/configure_ssh.py -------------------------------------------------------------------------------- /resources/scripts/configure_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/configure_tools.py -------------------------------------------------------------------------------- /resources/scripts/execute_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/execute_code.py -------------------------------------------------------------------------------- /resources/scripts/fix-permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/fix-permissions.sh -------------------------------------------------------------------------------- /resources/scripts/restart-jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/restart-jupyter.sh -------------------------------------------------------------------------------- /resources/scripts/run_custom_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/run_custom_scripts.py -------------------------------------------------------------------------------- /resources/scripts/run_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/run_workspace.py -------------------------------------------------------------------------------- /resources/scripts/setup-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/setup-certs.sh -------------------------------------------------------------------------------- /resources/scripts/start-vnc-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/scripts/start-vnc-server.sh -------------------------------------------------------------------------------- /resources/ssh/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/ssh/ssh_config -------------------------------------------------------------------------------- /resources/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/ssh/sshd_config -------------------------------------------------------------------------------- /resources/supervisor/programs/cron.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/cron.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/filebrowser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/filebrowser.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/glances.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/glances.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/jupyter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/jupyter.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/netdata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/netdata.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/nginx.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/novnc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/novnc.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/rsyslog.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/sshd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/sshd.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/sslh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/sslh.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/ungit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/ungit.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/vncserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/vncserver.conf -------------------------------------------------------------------------------- /resources/supervisor/programs/vscode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/programs/vscode.conf -------------------------------------------------------------------------------- /resources/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/supervisor/supervisord.conf -------------------------------------------------------------------------------- /resources/tests/evaluate-py-libraries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/evaluate-py-libraries.ipynb -------------------------------------------------------------------------------- /resources/tests/log-environment-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/log-environment-info.sh -------------------------------------------------------------------------------- /resources/tests/ml-job/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/ml-job/__main__.py -------------------------------------------------------------------------------- /resources/tests/ml-job/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/ml-job/environment.yml -------------------------------------------------------------------------------- /resources/tests/ml-job/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | tqdm -------------------------------------------------------------------------------- /resources/tests/ml-job/setup.sh: -------------------------------------------------------------------------------- 1 | echo "Run some custom installs here..." -------------------------------------------------------------------------------- /resources/tests/ml-service/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/ml-service/__main__.py -------------------------------------------------------------------------------- /resources/tests/ml-service/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | fastapi 3 | uvicorn -------------------------------------------------------------------------------- /resources/tests/requirements-full-updated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/requirements-full-updated.txt -------------------------------------------------------------------------------- /resources/tests/scan-clamav-virus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/scan-clamav-virus.sh -------------------------------------------------------------------------------- /resources/tests/scan-python-vulnerabilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/scan-python-vulnerabilities.sh -------------------------------------------------------------------------------- /resources/tests/scan-trivy-vulnerabilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/scan-trivy-vulnerabilities.sh -------------------------------------------------------------------------------- /resources/tests/test-code-execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/test-code-execution.py -------------------------------------------------------------------------------- /resources/tests/test-tool-installers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/test-tool-installers.ipynb -------------------------------------------------------------------------------- /resources/tests/test_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tests/test_workspace.py -------------------------------------------------------------------------------- /resources/tools/alacritty-terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/alacritty-terminal.sh -------------------------------------------------------------------------------- /resources/tools/atom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/atom.sh -------------------------------------------------------------------------------- /resources/tools/azure-data-studio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/azure-data-studio.sh -------------------------------------------------------------------------------- /resources/tools/azure-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/azure-utils.sh -------------------------------------------------------------------------------- /resources/tools/beakerx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/beakerx.sh -------------------------------------------------------------------------------- /resources/tools/cuda-10-0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/cuda-10-0.sh -------------------------------------------------------------------------------- /resources/tools/data-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/data-utils.sh -------------------------------------------------------------------------------- /resources/tools/dbeaver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/dbeaver.sh -------------------------------------------------------------------------------- /resources/tools/dev-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/dev-utils.sh -------------------------------------------------------------------------------- /resources/tools/docker-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/docker-utils.sh -------------------------------------------------------------------------------- /resources/tools/emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/emacs.sh -------------------------------------------------------------------------------- /resources/tools/embedding-projector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/embedding-projector.sh -------------------------------------------------------------------------------- /resources/tools/fasttext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/fasttext.sh -------------------------------------------------------------------------------- /resources/tools/filebrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/filebrowser.sh -------------------------------------------------------------------------------- /resources/tools/filezilla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/filezilla.sh -------------------------------------------------------------------------------- /resources/tools/firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/firefox.sh -------------------------------------------------------------------------------- /resources/tools/flink-local-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/flink-local-cluster.sh -------------------------------------------------------------------------------- /resources/tools/git-kraken.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/git-kraken.sh -------------------------------------------------------------------------------- /resources/tools/git-lfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/git-lfs.sh -------------------------------------------------------------------------------- /resources/tools/go-interpreter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/go-interpreter.sh -------------------------------------------------------------------------------- /resources/tools/gpuview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/gpuview.sh -------------------------------------------------------------------------------- /resources/tools/gui-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/gui-tools.sh -------------------------------------------------------------------------------- /resources/tools/hadoop-local-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/hadoop-local-cluster.sh -------------------------------------------------------------------------------- /resources/tools/hyper-terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/hyper-terminal.sh -------------------------------------------------------------------------------- /resources/tools/intellij.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/intellij.sh -------------------------------------------------------------------------------- /resources/tools/java-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/java-runtime.sh -------------------------------------------------------------------------------- /resources/tools/java-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/java-utils.sh -------------------------------------------------------------------------------- /resources/tools/kubernetes-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/kubernetes-utils.sh -------------------------------------------------------------------------------- /resources/tools/label-studio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/label-studio.sh -------------------------------------------------------------------------------- /resources/tools/metabase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/metabase.sh -------------------------------------------------------------------------------- /resources/tools/minio-mc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/minio-mc.sh -------------------------------------------------------------------------------- /resources/tools/netdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/netdata.sh -------------------------------------------------------------------------------- /resources/tools/netron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/netron.sh -------------------------------------------------------------------------------- /resources/tools/nteract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/nteract.sh -------------------------------------------------------------------------------- /resources/tools/oh-my-zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/oh-my-zsh.sh -------------------------------------------------------------------------------- /resources/tools/omnidb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/omnidb.sh -------------------------------------------------------------------------------- /resources/tools/pgadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/pgadmin.sh -------------------------------------------------------------------------------- /resources/tools/portainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/portainer.sh -------------------------------------------------------------------------------- /resources/tools/postman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/postman.sh -------------------------------------------------------------------------------- /resources/tools/pycharm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/pycharm.sh -------------------------------------------------------------------------------- /resources/tools/python-27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/python-27.sh -------------------------------------------------------------------------------- /resources/tools/r-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/r-runtime.sh -------------------------------------------------------------------------------- /resources/tools/rapids-gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/rapids-gpu.sh -------------------------------------------------------------------------------- /resources/tools/robo3t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/robo3t.sh -------------------------------------------------------------------------------- /resources/tools/ruby-interpreter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/ruby-interpreter.sh -------------------------------------------------------------------------------- /resources/tools/scala-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/scala-utils.sh -------------------------------------------------------------------------------- /resources/tools/sent2vec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/sent2vec.sh -------------------------------------------------------------------------------- /resources/tools/spark-local-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/spark-local-cluster.sh -------------------------------------------------------------------------------- /resources/tools/sqlectron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/sqlectron.sh -------------------------------------------------------------------------------- /resources/tools/tilix-terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/tilix-terminal.sh -------------------------------------------------------------------------------- /resources/tools/ungit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/ungit.sh -------------------------------------------------------------------------------- /resources/tools/vs-code-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/vs-code-desktop.sh -------------------------------------------------------------------------------- /resources/tools/vs-code-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/vs-code-server.sh -------------------------------------------------------------------------------- /resources/tools/xrdp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/xrdp.sh -------------------------------------------------------------------------------- /resources/tools/zeppelin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tools/zeppelin.sh -------------------------------------------------------------------------------- /resources/tutorials/tutorials/images/jupyter-basics-animation.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/images/jupyter-basics-animation.m4v -------------------------------------------------------------------------------- /resources/tutorials/tutorials/images/jupyter-basics-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/images/jupyter-basics-logo.png -------------------------------------------------------------------------------- /resources/tutorials/tutorials/images/jupyter-basics-python-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/images/jupyter-basics-python-logo.svg -------------------------------------------------------------------------------- /resources/tutorials/tutorials/jupyter-basics-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/jupyter-basics-tutorial.ipynb -------------------------------------------------------------------------------- /resources/tutorials/tutorials/jupyter-tipps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/jupyter-tipps.ipynb -------------------------------------------------------------------------------- /resources/tutorials/tutorials/numpy-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/numpy-tutorial.ipynb -------------------------------------------------------------------------------- /resources/tutorials/tutorials/pandas-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/pandas-tutorial.ipynb -------------------------------------------------------------------------------- /resources/tutorials/tutorials/python-basics-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/python-basics-tutorial.ipynb -------------------------------------------------------------------------------- /resources/tutorials/tutorials/visualization-tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/visualization-tutorial.ipynb -------------------------------------------------------------------------------- /resources/tutorials/tutorials/workspace-test-utilities.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/tutorials/workspace-test-utilities.ipynb -------------------------------------------------------------------------------- /resources/tutorials/welcome.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ml-tooling/ml-workspace/HEAD/resources/tutorials/welcome.ipynb --------------------------------------------------------------------------------