Skip to content

Commit d09c3dd

Browse files
committed
Add StackGAN++-Mode-Seeking
1 parent 7cb4d68 commit d09c3dd

File tree

9 files changed

+2181
-0
lines changed

9 files changed

+2181
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
CONFIG_NAME: '3stages'
2+
3+
DATASET_NAME: 'birds'
4+
EMBEDDING_TYPE: 'cnn-rnn'
5+
DATA_DIR: 'E:\\GAN-Datasets\\birds'
6+
GPU_ID: '0'
7+
WORKERS: 0
8+
9+
10+
TREE:
11+
BRANCH_NUM: 3
12+
13+
14+
TRAIN:
15+
FLAG: True
16+
NET_G: '' # './output/birds_3stages/Model/netG_epoch_700.pth'
17+
NET_D: '' # './output/birds_3stages/Model/netD'
18+
BATCH_SIZE: 4
19+
MAX_EPOCH: 1000
20+
SNAPSHOT_INTERVAL: 2000
21+
DISCRIMINATOR_LR: 0.0002
22+
GENERATOR_LR: 0.0002
23+
COEFF:
24+
UNCOND_LOSS: 1.0
25+
MS_LOSS: 1.0
26+
27+
28+
GAN:
29+
EMBEDDING_DIM: 128
30+
DF_DIM: 64
31+
GF_DIM: 64
32+
Z_DIM: 100
33+
R_NUM: 2
34+
B_CONDITION: True
35+
36+
TEXT:
37+
DIMENSION: 1024
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
CONFIG_NAME: '3stages'
2+
3+
DATASET_NAME: 'birds'
4+
EMBEDDING_TYPE: 'cnn-rnn'
5+
DATA_DIR: 'E:\\GAN-Datasets\\birds'
6+
GPU_ID: '0'
7+
WORKERS: 1 # 4
8+
9+
TREE:
10+
BRANCH_NUM: 3
11+
12+
13+
TEST:
14+
B_EXAMPLE: False
15+
16+
17+
TRAIN:
18+
FLAG: False
19+
NET_G: 'J:\\qimao\\Text-to-image\\StackGAN-v2\\official\\netG_210000.pth'
20+
BATCH_SIZE: 1
21+
22+
23+
GAN:
24+
EMBEDDING_DIM: 128
25+
DF_DIM: 64
26+
GF_DIM: 64
27+
Z_DIM: 100
28+
R_NUM: 2
29+
B_CONDITION: True

0 commit comments

Comments
 (0)