-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_models_batch_uploaded.sh
More file actions
14 lines (14 loc) · 909 Bytes
/
run_models_batch_uploaded.sh
File metadata and controls
14 lines (14 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# */AIPND-revision/intropyproject-classify-pet-images/run_models_batch_uploaded.sh
#
# PROGRAMMER: Jennifer S.
# DATE CREATED: 02/08/2018
# REVISED DATE: 02/27/2018 -
# PURPOSE: Runs all three models to test which provides 'best' solution on the Uploaded Images.
# Please note output from each run has been piped into a text file.
#
# Usage: sh run_models_batch_uploaded.sh -- will run program from commandline within Project Workspace
#
python check_images.py --dir uploaded_images/ --arch resnet --dogfile dognames.txt > resnet_uploaded-images.txt
python check_images.py --dir uploaded_images/ --arch alexnet --dogfile dognames.txt > alexnet_uploaded-images.txt
python check_images.py --dir uploaded_images/ --arch vgg --dogfile dognames.txt > vgg_uploaded-images.txt