I've been able to push down a machine learning module to an IoT edge device as per the below Microsoft tutorial. I am also able to get ML predictions from routing data from the tempSensor simulated data module to the ML module which is great.
https://docs.microsoft.com/en-gb/azure/iot-edge/tutorial-deploy-machine-learning
What i would like to do is use the Machine Learning module as a web service on the IoT Edge device - is there a way to target this module using REST etc? Something similar to the below, although i'm pushing down the ML model as a module to the IoT edge device not as a web service.
https://docs.microsoft.com/en-gb/azure/machine-learning/preview/model-management-service-deploy
EDIT: I'm not looking to deploy a ML image as a web service like the following link using "az ml service create" etc. I would like to deploy the ML image as a module via IoT Edge management and still access it via REST API. https://docs.microsoft.com/en-gb/azure/machine-learning/preview/model-management-service-deploy
Cheers, Com