根据下面的 Microsoft 教程,我已经能够将机器学习模块下推到 IoT 边缘设备。我还能够从 tempSensor 模拟数据模块到 ML 模块的路由数据中获得 ML 预测,这很棒。
https://docs.microsoft.com/en-gb/azure/iot-edge/tutorial-deploy-machine-learning
我想做的是在 IoT Edge 设备上使用机器学习模块作为 Web 服务 - 有没有办法使用 REST 等来定位这个模块?类似于下面的内容,尽管我将 ML 模型作为模块推送到 IoT 边缘设备而不是作为 Web 服务。
https://docs.microsoft.com/en-gb/azure/machine-learning/preview/model-management-service-deploy
编辑:我不希望使用“az ml service create”等将 ML 映像部署为 Web 服务,如以下链接。我想通过 IoT Edge 管理将 ML 映像部署为模块,并仍然通过 REST 访问它API。 https://docs.microsoft.com/en-gb/azure/machine-learning/preview/model-management-service-deploy
干杯,康