https://github.com/samet-akcay/ganomaly
Raw File
Tip revision: 820012a7cb76c36b3c072420342ddcb20c49ea75 authored by dependabot[bot] on 02 June 2021, 00:02:35 UTC
Bump urllib3 from 1.25.3 to 1.26.5
Tip revision: 820012a
run_cifar.sh
#!/bin/bash

# Run CIFAR10 experiment on ganomaly

declare -a arr=("plane" "car" "bird" "cat" "deer" "dog" "frog" "horse" "ship" "truck" )
for m in $(seq 0 2)
do
    echo "Manual Seed: $m"
    for i in "${arr[@]}";
    do
        echo "Running CIFAR. Anomaly Class: $i "
        python train.py --dataset cifar10 --isize 32 --niter 15 --abnormal_class $i --manualseed $m
    done
done
exit 0
back to top