Upload folder using huggingface_hub
Browse files
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 |
+
```
|