|
#!/bin/bash |
|
|
|
|
|
pool="stylegan2_afhqdog512-16" |
|
|
|
eps=0.15 |
|
shift_leap=5 |
|
batch_size=20 |
|
|
|
|
|
|
|
declare -a SHIFT_STEPS=(120) |
|
|
|
|
|
declare -a EXPERIMENTS=( |
|
"experiments/complete/ContraCLIP_stylegan2_afhqdog512-W+-K4-D64-lss_beta_0.5-eps0.1_0.2-nonlinear_css_beta_0.5-contrastive_0.07-20000-dogs" |
|
) |
|
|
|
for shift_s in "${SHIFT_STEPS[@]}" |
|
do |
|
for exp in "${EXPERIMENTS[@]}" |
|
do |
|
python traverse_latent_space.py -v --gif \ |
|
--exp="${exp}" \ |
|
--pool="${pool}" \ |
|
--eps=${eps} \ |
|
--shift-steps="${shift_s}" \ |
|
--shift-leap=${shift_leap} \ |
|
--batch-size=${batch_size} \ |
|
--img-size=512 \ |
|
--gif \ |
|
--gif-height=256 \ |
|
--strip \ |
|
--strip-height=256 |
|
done |
|
done |
|
|