Reputation: 51
I want to integrate azureml-sdk into some web-page.
But currently I can only find azureml-sdk-for-python.
Is there any release for azureml-sdk-for-dotnet/c-sharp?
Just like https://learn.microsoft.com/en-us/python/api/overview/azure/ml/?view=azure-ml-py
Upvotes: 0
Views: 1216
Reputation: 635
There are only 3 ways to use AzureML:
While working in Dotnet Core, the easiest way is to use the REST APIs, as then you don't need to rely on any package. Also, I believe that the python SDK is using these REST APIs in background. However, the REST APIs don't have the best documentation and its hard to find API params for some specific resources.
Another way would be to use Microsoft.PowerShell.SDK
package and then run the az ml cli
commands.
Lastly, you can use IronPython
package (or something similar) to run the python sdk as well.
You can find documentation for each of the 3 methods here. (Check the "Reference" card on the page)
Upvotes: 1