Created
September 13, 2019 11:56
-
-
Save aribornstein/bbe940bcd58a84414602fb19583912f3 to your computer and use it in GitHub Desktop.
ACI Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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