kamangir commited on
Commit ·
60603bc
1
Parent(s): 1438b88
validating fashion_mnist train - kamangir/bolt#689
Browse files
abcli/image_classifier.sh
CHANGED
|
@@ -10,6 +10,8 @@ function abcli_image_classifier() {
|
|
| 10 |
if [ "$task" == "help" ] ; then
|
| 11 |
abcli_help_line "$abcli_cli_name image_classifier describe object_1" \
|
| 12 |
"describe model object_1."
|
|
|
|
|
|
|
| 13 |
abcli_help_line "$abcli_cli_name image_classifier predict object_1 object_2" \
|
| 14 |
"run image_classifier model object_1 predict on data object_2."
|
| 15 |
abcli_help_line "$abcli_cli_name image_classifier train object_1" \
|
|
@@ -39,6 +41,12 @@ function abcli_image_classifier() {
|
|
| 39 |
return
|
| 40 |
fi
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
abcli_log_error "-fashion_mnist: image-classifier: $task: command not found."
|
| 43 |
}
|
| 44 |
|
|
|
|
| 10 |
if [ "$task" == "help" ] ; then
|
| 11 |
abcli_help_line "$abcli_cli_name image_classifier describe object_1" \
|
| 12 |
"describe 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 object_1 object_2" \
|
| 16 |
"run image_classifier model object_1 predict on data object_2."
|
| 17 |
abcli_help_line "$abcli_cli_name image_classifier train object_1" \
|
|
|
|
| 41 |
return
|
| 42 |
fi
|
| 43 |
|
| 44 |
+
if [ "$task" == "install" ] ; then
|
| 45 |
+
conda install -y -c anaconda seaborn
|
| 46 |
+
return
|
| 47 |
+
fi
|
| 48 |
+
|
| 49 |
+
|
| 50 |
abcli_log_error "-fashion_mnist: image-classifier: $task: command not found."
|
| 51 |
}
|
| 52 |
|
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.64"
|
| 4 |
|
| 5 |
description = "fashion-mnist + hugging-face + awesome-bash-cli"
|