jccantre
10/1/2019 - 6:11 PM

Deploy in Azure Container Instance

from azureml.core.webservice import AciWebservice

aciconfig = AciWebservice.deploy_configuration(cpu_cores=1, 
                                               memory_gb=1, 
                                               tags={"data": "SVM",  "method" : "sklearn"}, 
                                               description='Predict gender with sklearn SVM')