-
Notifications
You must be signed in to change notification settings - Fork 18
/
run_fsd.sh
executable file
·58 lines (44 loc) · 1.3 KB
/
run_fsd.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
#!/bin/bash
BASELINE=datasets/lsun/church_outdoor_train
PGAN=results/imagesample/church/size_10000
echo 'Church training set to self'
python -m seeing.fsd \
--histout results/fsd/fsd_church_selfcompare.png \
--labelcount 30 --dpi 300 \
--cachedir results/fsd/cache \
${BASELINE} ${BASELINE}
# python -m seeing.fsd ${PGAN} ${PGAN}
echo 'Church progressive gan'
python -m seeing.fsd \
--histout results/fsd/fsd_pgan_church.png \
--dpi 300 \
--cachedir results/fsd/cache \
${BASELINE} ${PGAN}
BASELINE=datasets/lsun/bedroom_train
PGAN=results/imagesample/bedroom/size_10000
echo 'Bedroom training set to self'
python -m seeing.fsd \
--histout results/fsd/fsd_bedroom_selfcompare.png \
--labelcount 30 --dpi 300 \
--cachedir results/fsd/cache \
${BASELINE} ${BASELINE}
echo 'Bedroom progressive gan'
python -m seeing.fsd \
--histout results/fsd/fsd_pgan_bedroom.png \
--dpi 300 \
--cachedir results/fsd/cache \
${BASELINE} ${PGAN}
for ARCH in \
minibatch-stddev \
wgangp \
# stylegan \
do
BASELINE=datasets/lsun/bedroom_train
DIRNAME=results/imagesample/${ARCH}/size_10000
echo ${ARCH}
python -m seeing.fsd \
--histout results/fsd/fsd_${ARCH}_bedroom.png \
--dpi 300 \
--cachedir results/fsd/cache \
${BASELINE} ${DIRNAME}
done