Azure Machine Learning Studio

Introduction

 
Azure Machine learning Studio is a cloud-based integrated environment for developing Machine Learning solutions that combines no-code/low code and code first experiences for an inclusive data scientist platform.
 
Azure Machine Learning Studio
 
Let me explain a bit more about ML Studio (Classic) and Azure Machine Learning Studio.
 

ML Studio (Classic)

 
By URL, https://studio.azureml.net/, was released in 2015 and was the first drag and drop machine learning builder.
  • Can manage datasets
  • Can create an ML model with drag and drop with low code options
  • Can add R and Python code module
  • Can manage a trained model
  • Publish model as web services
Azure Machine Learning Studio
With ML Classic, we can design an ML model with drag and drop interface and then publish it from the same platform. This studio supports experiments with scalable up to 10GB training data limit only. In terms of deployment computing, ML classic studio Solutions can be published in web service format and are not customizable. Considering MLOps, this studio can do basic model management and CPU deployments only. The below features are not supported in ML Studio (Classic),
  • Code SDKs
  • ML Pipeline
  • Automated Model training and hyperparameter tuning
  • Data Drift detection
  • Data labeling projects.
I will depict a complete ML solution using this studio in the next article.
 

Azure Machine Learning Studio

 
This URL, https://ml.azure.com/, is a modern studio that outperforms over the classic studio and has several exclusive features. Therefore, this studio is a complete package for developing and deploying ML solutions of any nature. The platform can handle all scenarios of Machine learning, starting from Classic ML to deep learning, and is also suitable for supervised as well as an unsupervised approach. You can go for code first approach with the full flavor of writing Python or R code with the SDK. You have the option to create a workspace with notebooks (Jupiter Notebooks), taking full advantage of Python code, likewise for RStudio.
 
The studio gives a wide range of options to manage your assets and resources directly from the browser with a seamless experience. Using this studio, we can manage:
  • Models
  • Datasets
  • Datastores
  • Computer resources
  • Notebooks
  • Experiments
  • Run logs
  • Pipelines
  • Pipeline Endpoints.
Notebooks is available for author machine learning projects to write and run your own code in managed Jupyter Notebook servers that are directly integrated into the studio.
 
Using python SDKs, we can write, run, and take full advantage of Python code.
 
Additionally, Azure Machine Learning designer is included for no code or low code, drag and drop to create ML pipelines.

Azure Machine Learning Studio
 
Another exclusive option, AutoML comes with this studio. Let me explain a bit more about AutoML.
 

AutoML

 
Automated machine learning, also referred to as automated ML or AutoML, is the process of automating the time consuming, iterative tasks of machine learning model development. It allows data scientists, analysts, and developers to build ML models with high scale, efficiency, and productivity all while sustaining model quality. Automated ML is based on a breakthrough from our Microsoft Research division.
 
Traditional machine learning model development is resource-intensive, requiring significant domain knowledge and time to produce and compare dozens of models. With automated machine learning, you’ll accelerate the time it takes to get production-ready ML models with great ease and efficiency.
 
However, we can use Automate ML for all types of ML projects. Auto ML can be used for the following ML types:
  • Classification
  • Regression
  • Time-series forecasting
How AutoML Works
 
Model creation is typically a time-consuming and iterative process. In most of the cases, the desired accuracy cannot be achieved with one model.

Azure Machine Learning Studio
 
We choose some features from the data, and select the algorithm then set parameters, finally run the model to check the score or evaluation (accuracy). If the accuracy is below the expectation, then we change the features, choose another algorithm or change the parameters, and again run the model to check the score. This iterative process will continue several times until we get the desired accuracy, which is time-consuming.

Azure Machine Learning Studio
 
However, automated machine learning can accelerate model development by automating the iterative tacks. You can prove the dataset, set target metric, and constraints, AutoML will select different features, algorithms and parameters run the experiments. The process will automatically repeat with different features, algorithms, and parameters and at last, it will list the results with score and will show the top 3 models as depicted.

Azure Machine Learning Studio
 
Data labeling is another authoring option that is available to efficiently coordinate data labeling projects with the use of Azure Machine Learning data labeling.
 

Deploy your existing model with Azure machine learning

 
This option is basically for deployment as a cloud service. If you have your ML model trained outside of Azure Machine learning, you can register and deploy the model in azure as a web service or to an IoT Edge device. After deployment, you can monitor your model and detect data drift in Azure ML.
 

MLOps (Machine Learning Operations)

 
Machine Learning Operations (MLOps) is based on DevOps principles and practices that increase the efficiency of workflows. For example, continuous integration, delivery, and deployment. MLOps applies these principles to the machine learning process, with the goal of:
  • Faster experimentation and development of models
  • Faster deployment of models into production
  • Quality assurance

Conclusion

 
ML Studio (classic) is Azure ML's first drag-and-drop machine learning builder, however, it does not interoperate with Azure Machine Learning. On the other hand, Azure Machine Learning is a separate complete platform for data science with modernized services and several features. Azure Machine Learning Studio is a web-based portal in Azure Machine Learning for developing and managing options of ML model for project authoring and asset management.
 
References
 
https://docs.microsoft.com/en-us/azure/machine-learning/ 
 
Happy Coding!!


Similar Articles