机器学习工作室的网络服务 public?

Are Machine Learning Studios's web services public?

我在 Machine Learning Studio 中创建了一个实验并将其部署为 Web 服务。我的工作区中有一个请求-响应 API 可以正常工作。其他人也可以使用吗?

部署模型时,会返回一个 Webservice 对象,其中包含有关服务的信息。

from azureml.core.webservice import AciWebservice, Webservice
from azureml.core.model import Model

deployment_config = AciWebservice.deploy_configuration(cpu_cores = 3, memory_gb = 15, location = "centralus")
service = Model.deploy(ws, "aciservice", [model], inference_config, deployment_config)
service.wait_for_deployment(show_output = True)
print(service.state)

请按照以下步骤使用部署为 Web 服务的 Azure 机器学习模型 https://docs.microsoft.com/en-us/azure/machine-learning/how-to-consume-web-service