MachineLearningNotebooks icon indicating copy to clipboard operation
MachineLearningNotebooks copied to clipboard

Python notebooks with ML and deep learning examples with Azure Machine Learning Python SDK | Microsoft

Results 209 MachineLearningNotebooks issues
Sort by recently updated
recently updated
newest added

I accidently provided the same parameter name for two different pipeline parameters used in different steps, what lead to the error message: ``` ValueError: PipelineDataset does not have a name....

I think print(azure.ai.ml.version.VERSION) should be print(azure.ai.ml._version.VERSION) or at least that is what works for me ![image](https://user-images.githubusercontent.com/13345966/186383174-ffb178fa-1156-41af-b006-01881bd6fd8c.png) --- #### Document Details ⚠ *Do not edit this section. It is required for...

Version azureml.core: 1.11.0 ``` from azureml.core import Model model = Model(ws, "MODEL_NAME") tags_before_serialization = model.tags serialized = model.serialize() deserialized_model = Model.deserialize(ws, serialized) tags_after_serialization = deserialized_model.tags print(f"Before: {tags_before_serialization}") print(f"After: {tags_after_serialization}") ```...

product-issue
MLOps
ADO

[Enter feedback here] I'm following [this](https://docs.microsoft.com/en-us/python/api/azureml-pipeline-core/azureml.pipeline.core.graph.pipelineparameter?view=azure-ml-py) example to create a PipelineParameters for my Parallel pipeline ``` from azureml.core.datastore import Datastore from azureml.data.datapath import DataPath, DataPathComputeBinding from azureml.pipeline.steps import PythonScriptStep from...

Hey, there's a duplicate enumeration of parameters under the constructor section https://learn.microsoft.com/en-us/python/api/azureml-core/azureml.data.output_dataset_config.outputfiledatasetconfig?view=azure-ml-py#constructor [Enter feedback here] --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com...

Hi, I encountered below error, I have azureml-opendatasets==1.55.0 Calling to_spark_dataframe() Traceback (most recent call last): File "/mnt/c/users/cruiseli/OneDrive - Microsoft/Desktop/workspace/SynapseML-Utils/test_aml.py", line 30, in nyc_tlc_df2 = nyc_tlc.to_spark_dataframe() File "/home/cruise/mambaforge/lib/python3.10/site-packages/azureml/opendatasets/accessories/_loggerfactory.py", line 139, in...

Running `pip install azureml-fsspec` fails with the following error: ``` Collecting azureml-fsspec Using cached azureml_fsspec-0.1.0b1-py3-none-any.whl (6.2 kB) ERROR: Cannot install azureml-fsspec because these package versions have conflicting dependencies. The conflict...

AzureML pipelines does not support Ray Distribution, but should, as AzureML already has working support for it via "command" jobs. If you try to create an AzureML pipeline using Ray,...

While using a DatabricksStep I want to get the appropriate Run context so that I can log information to Azure ML. I thought this might work: 1) Authenticate with AzureMLTokenAuthentication...

Pipelines
product-issue
ADO

https://microsoft.github.io/AI-For-Beginners/?id=getting-started