kamangir
commited on
Commit
•
acdb2d7
1
Parent(s):
8c7151e
validating single image predict for fashion_mnist - kamangir/bolt#692
Browse files
abcli/image_classifier.sh
CHANGED
@@ -8,10 +8,10 @@ function abcli_image_classifier() {
|
|
8 |
local task=$(abcli_unpack_keyword "$1" help)
|
9 |
|
10 |
if [ "$task" == "help" ] ; then
|
11 |
-
abcli_help_line "$abcli_cli_name image_classifier list [object_1] [model=object/*saved]" \
|
12 |
-
"list saved/object model object_1."
|
13 |
abcli_help_line "$abcli_cli_name image_classifier install" \
|
14 |
"install image_classifier."
|
|
|
|
|
15 |
abcli_help_line "$abcli_cli_name image_classifier predict data_1 [name_1] [data=filename/*object/url,model=object/*saved]" \
|
16 |
"run fashion_mnist saved/object model name_1 predict on filename/object/url data_1."
|
17 |
abcli_help_line "$abcli_cli_name image_classifier save [name_1] [object_1] [force]" \
|
|
|
8 |
local task=$(abcli_unpack_keyword "$1" help)
|
9 |
|
10 |
if [ "$task" == "help" ] ; then
|
|
|
|
|
11 |
abcli_help_line "$abcli_cli_name image_classifier install" \
|
12 |
"install image_classifier."
|
13 |
+
abcli_help_line "$abcli_cli_name image_classifier list [object_1] [model=object/*saved]" \
|
14 |
+
"list saved/object model object_1."
|
15 |
abcli_help_line "$abcli_cli_name image_classifier predict data_1 [name_1] [data=filename/*object/url,model=object/*saved]" \
|
16 |
"run fashion_mnist saved/object model name_1 predict on filename/object/url data_1."
|
17 |
abcli_help_line "$abcli_cli_name image_classifier save [name_1] [object_1] [force]" \
|
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.178"
|
4 |
|
5 |
description = "fashion-mnist + hugging-face + awesome-bash-cli"
|