Skip to content

Commit

Permalink
Fixed the spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
nealwu authored May 9, 2017
1 parent 5c60bbd commit e2744ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slim/slim_walkthrough.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@
" names = imagenet.create_readable_names_for_imagenet_labels()\n",
" for i in range(5):\n",
" index = sorted_inds[i]\n",
" print('Probability %0.2f%% => [%s]' % (probabilities[index]*100, names[index]))"
" print('Probability %0.2f%% => [%s]' % (probabilities[index] * 100, names[index]))"
]
},
{
Expand Down Expand Up @@ -944,7 +944,7 @@
" for i in range(5):\n",
" index = sorted_inds[i]\n",
" # Shift the index of a class name by one. \n",
" print('Probability %0.2f%% => [%s]' % (probabilities[index]*100, names[index+1]))"
" print('Probability %0.2f%% => [%s]' % (probabilities[index] * 100, names[index+1]))"
]
},
{
Expand Down

0 comments on commit e2744ad

Please sign in to comment.