Azure Machine Learning Dataset Runtime

1.62.0 · active · verified Tue Apr 14

azureml-dataset-runtime is an internal Python package within the Azure Machine Learning SDK ecosystem, primarily designed to coordinate dependencies among other AzureML packages. It is not intended for direct use by end-users. As of version 1.62.0, released in February 2026, it maintains an active release cadence, reflecting ongoing development in the broader AzureML SDK.

Warnings

Install

Quickstart

Given that `azureml-dataset-runtime` is an internal package not meant for direct interaction, there is no typical 'quickstart' code for its use. Instead, it is installed as a dependency by other Azure Machine Learning SDK packages. The example demonstrates how it might appear in a `conda` environment configuration, highlighting the common practice of pinning `numpy` versions to avoid dependency conflicts with `azureml-dataset-runtime` and other SDK components.

# This package is internal and not intended for direct use.
# Users typically install it as a dependency for other AzureML SDK components.
# Here's an example of a conda environment file where it might appear as a dependency:

# name: my-azureml-env
# channels:
#   - conda-forge
#   - defaults
# dependencies:
#   - python=3.11  # Note: Python 3.12+ might have numpy compatibility issues
#   - pip
#   - pip:
#     - azureml-core==1.58.0
#     - azureml-dataset-runtime # Pulled in by azureml-core or other components
#     - numpy==1.23.5 # Pinning numpy is often necessary to avoid conflicts
#     - pandas
#     - scikit-learn

view raw JSON →