Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
freedomtan committed Nov 23, 2019
1 parent e305ac4 commit b698e34
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tensorflow/lite/examples/label_image/get_top_n_impl.h
Expand Up @@ -45,7 +45,6 @@ void get_top_n(T* prediction, int prediction_size, size_t num_results,
value = prediction[i];
break;
case kTfLiteInt8:
// value = prediction[i] / 128.0;
value = (prediction[i] + 128) / 256.0;
break;
case kTfLiteUInt8:
Expand Down

0 comments on commit b698e34

Please sign in to comment.