-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy path3_start_from_real_image.sh
executable file
·73 lines (60 loc) · 1.49 KB
/
3_start_from_real_image.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#/bin/bash
opt_layer=fc6
act_layer=fc8
units=945
xy=0
# Hyperparam settings for visualizing AlexNet
iters="30"
weights="99"
rates="1.0"
end_lr=1e-10
# Clipping
clip=0
multiplier=3
bound_file=act_range/${multiplier}x/${opt_layer}.txt
init_file=images/red_pepper.jpg
# Debug
debug=1
if [ "${debug}" -eq "1" ]; then
rm -rf debug
mkdir debug
fi
# Output dir
output_dir="output"
#rm -rf ${output_dir}
mkdir -p ${output_dir}
# Running optimization across a sweep of hyperparams
for unit in ${units}; do
for seed in {0..0}; do
#for seed in {0..8}; do
for n_iters in ${iters}; do
for w in ${weights}; do
for lr in ${rates}; do
L2="0.${w}"
# Optimize images maximizing fc8 unit
python ./act_max.py \
--act_layer ${act_layer} \
--opt_layer ${opt_layer} \
--unit ${unit} \
--xy ${xy} \
--n_iters ${n_iters} \
--start_lr ${lr} \
--end_lr ${end_lr} \
--L2 ${L2} \
--seed ${seed} \
--clip ${clip} \
--bound ${bound_file} \
--debug ${debug} \
--output_dir ${output_dir} \
--init_file ${init_file}
done
done
done
done
done
if [ "${debug}" -eq "1" ]; then
output_file=${output_dir}/example3.jpg
montage debug/*.jpg -tile 10x20 -geometry +1+1 ${output_file}
convert ${output_file} -trim ${output_file}
echo "Intermediate results: ${output_file}"
fi