kamangir commited on
Commit ·
ba62492
1
Parent(s): 4e5cc90
validating fashion_mnist train - kamangir/bolt#689
Browse files
image_classifier/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
name = "image_classifier"
|
| 2 |
|
| 3 |
-
version = "1.1.
|
| 4 |
|
| 5 |
description = "fashion-mnist + hugging-face + awesome-bash-cli"
|
|
|
|
| 1 |
name = "image_classifier"
|
| 2 |
|
| 3 |
+
version = "1.1.67"
|
| 4 |
|
| 5 |
description = "fashion-mnist + hugging-face + awesome-bash-cli"
|
image_classifier/classes.py
CHANGED
|
@@ -163,7 +163,7 @@ class Image_Classifier(object):
|
|
| 163 |
predictions[index : index + 24],
|
| 164 |
None if test_labels is None else test_labels[index : index + 24],
|
| 165 |
test_images[index : index + 24],
|
| 166 |
-
"{}/image_classifier/
|
| 167 |
output_path,
|
| 168 |
int(index / 24),
|
| 169 |
),
|
|
|
|
| 163 |
predictions[index : index + 24],
|
| 164 |
None if test_labels is None else test_labels[index : index + 24],
|
| 165 |
test_images[index : index + 24],
|
| 166 |
+
"{}/image_classifier/prediction/{:05d}.jpg".format(
|
| 167 |
output_path,
|
| 168 |
int(index / 24),
|
| 169 |
),
|