Skip to content

Instantly share code, notes, and snippets.

@jccaicedo
Last active September 21, 2017 01:24
Embed
What would you like to do?
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