Questions tagged [azure-notebooks]

78 questions
5
votes
2 answers

ipywidgets widgets values not changing

I am trying to get output from my ipywidgets widgets in Microsoft Azure Notebooks running Jupyter Notebooks in Python 3.6. However, it does not return new values when I get them. This also applies to the event handlers/interact never being called…
Kai O.
  • 178
  • 2
  • 7
5
votes
1 answer

Really no possible way to privately share libraries in Azure Notebooks?

I'm looking into which service to chose when it comes to Jupyter Notebooks hosted in the cloud. Google Colaboratory (GCL) seems to be able to share privately (with people with Google Apps accounts) and real-time collaborate with them. However, for…
Clausen
  • 694
  • 8
  • 19
3
votes
2 answers

Can't access mounted Dataset on Azure Machine Learning Service Notebook

I am using the Notebook feature from the Azure Machine Learning Service. In this notebook I connected to the workspace, retrieved the corresponding datastore and retrieved my files as a file-dataset object. So far everything works. from azureml.core…
3
votes
1 answer

Is there a way to coauth on Jupyter Notebooks? or share the notebook in an editable mode?

I am trying to share my Jupyter notebook with my team and want us all to coauth on the same notebook? Is it possible ?
3
votes
1 answer

cant open notebooks.azure.com with error msg:Server Error in '/' Application

Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security…
Karen Jiang
  • 175
  • 1
  • 3
  • 12
2
votes
2 answers

Azure Machine Learning notebooks: ModuleNotFound error

I'm working through a Python exercise using Azure Machine Learning notebooks. I'm unable to import torch even after !pip install torch. Notebook says Requirement already satisfied, then errors out with: !pip install torch import torch data =…
SeaDude
  • 3,725
  • 6
  • 31
  • 68
2
votes
0 answers

Unable to access parameters from configuration.yaml using dependency-injector

I am unable to load the parameters I have in a configuration.yaml. containers.py class Container(containers.DeclarativeContainer): config = providers.Configuration(yaml_files=None) match_worker = providers.Singleton(Admin, …
pymat
  • 1,090
  • 1
  • 23
  • 45
2
votes
0 answers

Authenticate With Workspace

I have a Pipeline registered in my AML workspace. Now I would like to trigger a pipeline run from an Azure Notebook in the same Workspace. In order to get a reference object to the workspace in the notebook I need to authenticate, e.g. ws =…
1
vote
0 answers

How to make use of custom jar in Synapse Notebook after uploading it in Azure Synapse Workspace?

I am trying to add my customized jar in Azure Synapse Workspace to make use of user defined function (udf) present in the jar while running the sql query in Synapse Notebook. An Example: There is udf named as MapCloud() registered in UDFHelper.scala…
1
vote
1 answer

PythonException -AssertionError raised within the Spark worker

For every row in input_table there should be created X amount of rows in output_table, where X=days in year (from StartDate) Info field should contain Y amount of characters, where Y= X*2, if there are less, field should be padded with additional # …
Eli
  • 51
  • 5
1
vote
1 answer

Access dedicated SQL Pool from Synapse Analytics notebook

I am new to synapse analytics and I want to create a notebook, which could be used further as a databrick in the pipeline in order to process the data in one of the tables from the DB. I want to do everything in PySpark, so I am wondering how to…
1
vote
0 answers

Azure data bricks shared workspace notebooks integration with azure Repos Git?

My requirement is I have all my notebooks placed in the shared workspace of Azure Databricks, Now I want to integrate azure repos git with my databricks notebooks, and while integrating by default databricks is taking the notebooks which are under…
1
vote
0 answers

How to plot Multiple plots in a row in Azure ML Studio Notebooks Without Compromising Size?

I want to plot different plots in a single row so that it is easier for comparison. For example Distribution of a categorical feature in different data versions. In one of my use cases I plot the target distribution changes for Target Column…
Imperial_J
  • 306
  • 1
  • 7
  • 23
1
vote
0 answers

Microsoft Azure Jupyter Notebooks - relative path to a file for prod

I want to make my Azure Notebook production ready but I am having issues with the relative path in the folders. When executing the code to be run in the main, the relative path to files becomes the one from the main as opposed to the file where the…
stuski
  • 199
  • 1
  • 11
1
vote
1 answer

"ModuleNotFoundError: No module named 'azureml.automl.runtime._automl_forecast_freq' " while loading a model in azure

I have executed "pip install azureml-automl-runtime" in azure notebook. When I try to load the model with below code model_path = "forecast/model.pkl" loaded_model = pickle.load(open(model_path, 'rb')) I have tried loaded_model =…
1
2 3 4 5 6