Tag Archives: algorithms

Difference between Azure Machine Learning Studio vs. Workbench vs Azure Machine Learning Services?


When introduced Azure Machine Learning Workbench was a preview downloadable application. It provides a UI for many of the Azure Machine Learning CLI commands, particularly around experimentation submission for Python based jobs to DSVM or HDI. The Azure Machine Learning CLI is made up of many key functions, such as job submission, and creation of real time web services. The workbench installer provided a way to install everything required to participate in the preview.

Azure Machine Learning Studio is an older product, and provides a drag and drop interface for creating simply machine learning processes. It has limitations about the size of the data that can be handled (about 10gigs of processing). Learning and customer requests have based on this service have contributed to the design of the new Azure Machine Learning CLI mentioned above. BTW, now it should be added that Azure Machine Learning Workbench is deprecated since September 2018 and has been replaced by the Azure Machine Learning services (now GA).

Azure Machine Learning Service

The core functionality is still intact, but some major changes to point out about the architecture are:

  • A simplified Azure resources model
  • New portal UI to manage your experiments and compute targets
  • A new, more comprehensive Python SDK
  • A new expanded Azure CLI extension for machine learning

So in short, Azure Machine Learning service contains many advanced capabilities designed to simplify and accelerate the process of building, training, and deploying machine learning models. Automated machine learning enables data scientists of all skill levels to identify suitable algorithms and hyperparameters faster. Support for popular open-source frameworks such as PyTorch, TensorFlow, and scikit-learn allow data scientists to use the tools of their choice. DevOps capabilities for machine learning further improve productivity by enabling experiment tracking and management of models deployed in the cloud and on the edge. All these capabilities can be accessed from any Python environment running anywhere, including data scientists’ workstations.

How to: Using Microsoft Azure Key Vault from Web/Cloud application


Azure Key Vault enables users to store and use cryptographic keys within the Microsoft Azure environment. Azure Key Vault supports multiple key types and algorithms and enables the use of Hardware Security Modules (HSM) for high value customer keys. In addition, Azure Key Vault allows users to securely store secrets in a Key Vault; secrets are limited size octet objects and Azure Key Vault applies no specific semantics to these objects.

A Key Vault may contain a mix of keys and secrets at the same time, and access control for the two types of object is independently controlled. Users, subject to appropriate authorization, may:
(1) Manage cryptographic keys using Create, Import, Update, Delete and other operations
(2) Manage secrets using Get, Set, Delete and other operations
(3) Use cryptographic keys with Sign/Verify, WrapKey/UnwrapKey and Encrypt/Decrypt operations. Operations against Key Vaults are authenticated and authorized using Azure Active Directory.

In general, we can use New-AzureRMKeyVault cmdlet to create a key vault with three mandatory parameters:

New-AzureRmKeyVault -VaultName ‘ContosoKeyVault’ -ResourceGroupName ‘ContosoResourceGroup’ -Location ‘East Asia’

Ok, let we see how to Manage Encryption Keys for Your Cloud Apps with Azure Key Vault – luckily I found this hands-on MVA tutorial. With the new Azure Key Vault service, customers of cloud applications can manage their keys and secrets consistently across their cloud applications.

Please find the part # 1 video which covers background and theory.

https://mva.microsoft.com/en-US/training-courses-embed/getting-started-with-azure-security-for-the-it-professional-11165/How-to-Manage-Encryption-Keys-for-Your-Cloud-Apps-with-Azure-Key-Vault-dArgfqmIB_5904300474

Managing cryptographic keys and secrets is an essential part of safeguarding data in the cloud. The part TWO covering all the demos of the Azure Key Vault service​.

https://mva.microsoft.com/en-US/training-courses-embed/getting-started-with-azure-security-for-the-it-professional-11165/Demos-How-to-Manage-Encryption-Keys-for-Your-Cloud-Apps-with-Azure-Key-Vault-JtDLArmIB_904300474

For more info you can refer: https://azure.microsoft.com/en-in/documentation/articles/key-vault-use-from-web-application/, https://azure.microsoft.com/en-in/documentation/articles/key-vault-get-started/

Hope this helps.