1

Is that possible to use machine learning methods from Microsoft Azure Machine Learning as an API from my own code (without ML Studio) with possibility to calculate everything on their side?

alperovich
  • 854
  • 1
  • 9
  • 14

2 Answers2

1

You can publish an experiment (machine learning functions you hooked together in Azure ML Studio) as an API. When you call that API in your custom code you give it your data and all the computation runs in the cloud in Azure ML.

GregGalloway
  • 11,355
  • 3
  • 16
  • 47
  • thanks for the reply, I know that I can create experiment in MLStudio and deploy it and use as API, but my question is if it is possible to call ML methods without even MLStudio, just from my code itself? – alperovich Dec 17 '15 at 21:36
  • Only if you create the experiment in ML Studio first and publish it as an API. From then on you can call the API from your code and ML Studio need never be touched again. – GregGalloway Dec 17 '15 at 22:20
  • There are some marketplace APIs that others have built. Is that what you want of do you want to create your own API? – GregGalloway Dec 17 '15 at 22:21
  • I just want to call machine learning methods from my code with possibility to calculate this on their side. So I mean without MLStudio at all. – alperovich Jan 16 '16 at 18:52
0

I am reasonably new to Azure machine learning but I do not believe it is possible to use their API without using the MS studio at all. For example you will need the API key to call the API and authenticate with it and the only way I am aware of that you can obtain this key is via the ML studio (after you have published a trained experiment).

hamish
  • 447
  • 1
  • 9
  • 19