Skip to content

Commit 3ea9ac0

Browse files
Additional updates
1 parent 0d7247a commit 3ea9ac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-homomorphic-encryption-seal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def run(raw_data):
144144

145145
Create a deployment configuration file and specify the number of CPUs and gigabyte of RAM needed for your ACI container. While it depends on your model, the default of 1 core and 1 gigabyte of RAM is usually sufficient for many models. If you feel you need more later, you would have to recreate the image and redeploy the service.
146146

147-
```python tags=["configure web service", "aci"]
147+
```python
148148
from azureml.core.webservice import AciWebservice
149149

150150
aciconfig = AciWebservice.deploy_configuration(cpu_cores=1,
@@ -295,7 +295,7 @@ Provide the test dataset to the model to get predictions. We will need to send t
295295
import json
296296
from azureml.core import Webservice
297297

298-
service = Webservice(ws, 'sklearn-mnist-svc')
298+
service = Webservice(ws, 'sklearn-encrypted-mnist-svc')
299299

300300
#pass the connection string for blob storage to give the server access to the uploaded public keys
301301
conn_str_template = 'DefaultEndpointsProtocol={};AccountName={};AccountKey={};EndpointSuffix=core.windows.net'

0 commit comments

Comments
 (0)