papousek commited on
Commit
ed46054
·
verified ·
1 Parent(s): 1232ce7

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -98,3 +98,11 @@ prediction = tf.nn.sigmoid(logits).numpy()
98
  for i in (-prediction).argsort():
99
  print(f'{classes[i]:>10}: {100 * prediction[i]:.1f}%')
100
  ```
 
 
 
 
 
 
 
 
 
98
  for i in (-prediction).argsort():
99
  print(f'{classes[i]:>10}: {100 * prediction[i]:.1f}%')
100
  ```
101
+
102
+ Output:
103
+ ```
104
+ plant: 96.7%
105
+ human: 0.1%
106
+ insect: 0.1%
107
+ mushroom: 0.0%
108
+ ```