Skip to content

Commit 900cc7a

Browse files
authored
remove json.loads
1 parent 3148e52 commit 900cc7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

01.getting-started/01.train-within-notebook/01.train-within-notebook.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@
680680
"# score the entire test set.\n",
681681
"test_samples = json.dumps({'data': X_test.tolist()})\n",
682682
"\n",
683-
"result = json.loads(service.run(input_data = test_samples))\n",
683+
"result = service.run(input_data = test_samples)\n",
684684
"residual = result - y_test"
685685
]
686686
},

0 commit comments

Comments
 (0)