Calling AzureML Inference Services From .NET
Used Azure Machine Learning to create an inference service for predicting pro-riders' race times. Created a C# library, Aerozure, to easily call the service from .NET, passing strong-typed objects to the inference method.
For a project in the cycling community, I had to predict how long pro-riders would take to complete a certain race on the calendar. Different options, such as the parcours type, the distance and elevation obviously play a role in this. So I used Azure Machine Learning to create an inference service that got deployed on Azure Compute Instance and that exposes an API for this. In this post, I will explain how you can easily call the inference services of AzureML from dotnet, by passing strong typed objects to the inference method. All of the code is available in the Open Sourced library: Aer...