Skip to content

Instantly share code, notes, and snippets.

@jccaicedo
Last active September 21, 2017 01:24
Show Gist options
  • Save jccaicedo/48f350657e3b55613701f18aa59c61ad to your computer and use it in GitHub Desktop.
Save jccaicedo/48f350657e3b55613701f18aa59c61ad to your computer and use it in GitHub Desktop.
Validate models created by Keras in DeepProfiler
#!/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