Last active
September 21, 2017 01:24
-
-
Save jccaicedo/48f350657e3b55613701f18aa59c61ad to your computer and use it in GitHub Desktop.
Validate models created by Keras in DeepProfiler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for((k=1;k<100;k++)); do | |
n=`printf %04d $k` | |
CUDA_VISIBLE_DEVICES=2 \ | |
python3 learning \ | |
--config /data1/luad/extract.json \ | |
validation \ | |
--model /data1/luad/experiments/keras/5class-1/checkpoint_$n.hdf5 \ | |
> train_acc_$n.txt | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment