Overview of the Python SDK
The AzureML SDK is a Python library that allows you to interact with the AzureML services. It also provides you with data science modules that will assist you in your machine learning journey. The AzureML SDK is available in the R programming language through a Python to R interoperability package.
The SDK consists of several packages that group different types of modules you can import into your code base. All the Microsoft-supported modules are placed within packages that start with azureml
, such as azureml.core
and azureml.train.hyperdrive
. The following diagram offers a broad overview of the AzureML SDK's most frequently used packages, as well as the key modules that you will see in this book and the exam:
Note that all the key classes that exist in the azureml.core
package can also be imported from the corresponding child module. For example, the Experiment...