raw2logit / figures /show_results.sh
willis
reorganize
0220054
raw
history blame contribute delete
265 Bytes
#!/bin/bash
datasets='Microscopy Drone'
augmentations='weak strong none'
for augment in $augmentations
do
for data in $datasets
do
python show_results.py \
--dataset $data \
--augmentation $augment \
done
done