Skip to content

Commit 5c7ba46

Browse files
committed
Update code and text
1 parent 5d0e049 commit 5c7ba46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-inference-server-http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ To debug your scoring script locally, you have several options for testing the s
104104
1. Create your entry script. The following example creates a basic entry script and saves it to a file named _score.py_:
105105

106106
```bash
107-
echo -e "import time def init(): \n\t time.sleep(1) \n\n def run(input_data): \n\t return {"message":"Hello, World!"}" > score.py
107+
echo -e 'import time\ndef init(): \n\ttime.sleep(1) \n\ndef run(input_data): \n\treturn {"message":"Hello, World!"}' > score.py
108108
```
109109

110110
1. Start the server with the `azmlinfsrv` command and set the _score.py_ file as the entry script:

0 commit comments

Comments
 (0)