We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af54e7 commit 52ebb5bCopy full SHA for 52ebb5b
site/en/tutorials/images/classification.ipynb
@@ -1088,7 +1088,8 @@
1088
"outputs": [],
1089
"source": [
1090
"classify_lite = interpreter.get_signature_runner('serving_default')\n",
1091
- "classify_lite"
+ "print(classify_lite.get_input_details())\n",
1092
+ "print(classify_lite.get_output_details())"
1093
]
1094
},
1095
{
@@ -1110,7 +1111,7 @@
1110
1111
1112
1113
- "predictions_lite = classify_lite(sequential_1_input=img_array)['outputs']\n",
1114
+ "predictions_lite = classify_lite(keras_tensor_15=img_array)['output_0']\n",
1115
"score_lite = tf.nn.softmax(predictions_lite)"
1116
1117
0 commit comments