-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_models_batch.sh
More file actions
14 lines (14 loc) · 838 Bytes
/
run_models_batch.sh
File metadata and controls
14 lines (14 loc) · 838 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.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.
# Please note output from each run has been piped into a text file.
#
# Usage: sh run_models_batch.sh -- will run program from commandline within Project Workspace
#
python check_images.py --dir pet_images/ --arch resnet --dogfile dognames.txt > resnet_pet-images.txt
python check_images.py --dir pet_images/ --arch alexnet --dogfile dognames.txt > alexnet_pet-images.txt
python check_images.py --dir pet_images/ --arch vgg --dogfile dognames.txt > vgg_pet-images.txt