Commit 5c60bbd0 authored by Shallinlin's avatar Shallinlin
Browse files

correct the percentage logs in slim_walkthrough.ipynb

parent 2c44a4b7
...@@ -849,7 +849,7 @@ ...@@ -849,7 +849,7 @@
" names = imagenet.create_readable_names_for_imagenet_labels()\n", " names = imagenet.create_readable_names_for_imagenet_labels()\n",
" for i in range(5):\n", " for i in range(5):\n",
" index = sorted_inds[i]\n", " index = sorted_inds[i]\n",
" print('Probability %0.2f%% => [%s]' % (probabilities[index], names[index]))" " print('Probability %0.2f%% => [%s]' % (probabilities[index]*100, names[index]))"
] ]
}, },
{ {
...@@ -944,7 +944,7 @@ ...@@ -944,7 +944,7 @@
" for i in range(5):\n", " for i in range(5):\n",
" index = sorted_inds[i]\n", " index = sorted_inds[i]\n",
" # Shift the index of a class name by one. \n", " # Shift the index of a class name by one. \n",
" print('Probability %0.2f%% => [%s]' % (probabilities[index], names[index+1]))" " print('Probability %0.2f%% => [%s]' % (probabilities[index]*100, names[index+1]))"
] ]
}, },
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment