Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
2,514 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have plenty of notebooks in my ADB workspace , how can I move them to my AML workspace and start using them
It is either you export your notebooks from Azure Databricks. You can do this individually or in bulk:
.py
or .dbc
format, depending on your selection..dbc
archive or individually in .py
files.Or you can convert them, since Azure Machine Learning notebooks are Jupyter notebooks, which use the .ipynb
format. If your exported notebooks are not in .ipynb
format, you'll need to convert them:
.py
to .ipynb
: You can use tools like jupytext
to convert .py
files to .ipynb
. Jupytext can be installed via pip and used to convert files through the command line..dbc
to .ipynb
: If you exported a .dbc
archive, you may first need to extract the archive into individual notebooks (which may still require conversion to .ipynb
), depending on the format they are in after extraction.