Skip to content

Instantly share code, notes, and snippets.

@aribornstein
Created September 13, 2019 11:56
Show Gist options
  • Save aribornstein/bbe940bcd58a84414602fb19583912f3 to your computer and use it in GitHub Desktop.
Save aribornstein/bbe940bcd58a84414602fb19583912f3 to your computer and use it in GitHub Desktop.
ACI Config
from azureml.core.webservice import AciWebservice
aciconfig = AciWebservice.deploy_configuration(cpu_cores=1,
memory_gb=1,
tags={"data": "text", "method" : "NLP Architcet ABSA"},
description='Predict ABSA with NLP Architect')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment