我正在尝试与新的Azure ML工作区的能力,我找不到任何选择,以跟踪我的笔记本上的git。
这是可能的,就像你可以用Azure笔记本一样?如果不可能..。它是如何与这些笔记本一起工作的?只在这个工作空间里?
谢谢!
发布于 2020-02-27 18:20:41
AFAIK,Git目前不支持Azure机器学习笔记本。如果您正在寻找一个功能更全面的开发环境,我建议在本地设置一个环境。前面还有更多的工作,但它会给您提供版本控制的能力。请查看此开发环境设置指南。https://learn.microsoft.com/en-us/azure/machine-learning/how-to-configure-environment
| Environment | Pros | Cons |
|---------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Cloud-based Azure Machine Learning compute instance (preview) | Easiest way to get started. The entire SDK is already installed in your workspace VM, and notebook tutorials are pre-cloned and ready to run. | Lack of control over your development environment and dependencies. Additional cost incurred for Linux VM (VM can be stopped when not in use to avoid charges). See pricing details. |
| Local environment | Full control of your development environment and dependencies. Run with any build tool, environment, or IDE of your choice. | Takes longer to get started. Necessary SDK packages must be installed, and an environment must also be installed if you don't already have one. |
| Azure Databricks | Ideal for running large-scale intensive machine learning workflows on the scalable Apache Spark platform. | Overkill for experimental machine learning, or smaller-scale experiments and workflows. Additional cost incurred for Azure Databricks. See pricing details. |
| The Data Science Virtual Machine (DSVM) | Similar to the cloud-based compute instance (Python and the SDK are pre-installed), but with additional popular data science and machine learning tools pre-installed. Easy to scale and combine with other custom tools and workflows. | A slower getting started experience compared to the cloud-based compute instance. |https://stackoverflow.com/questions/60434642
复制相似问题