Upload folder using huggingface_hub
Browse files- config.yaml +98 -0
- t5.vocab +0 -0
- vis_model.pth +3 -0
config.yaml
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: cc12m_64x64
|
2 |
+
dataset_config: configs/datasets/cc12m.yaml
|
3 |
+
|
4 |
+
#evaluator_arguments:
|
5 |
+
batch_size: 32
|
6 |
+
num_eval_batches: 500
|
7 |
+
sample_image_size: 64
|
8 |
+
test_file_list: validation.tsv
|
9 |
+
reader_config_file: launch_scripts/reader/latest_eval.yaml
|
10 |
+
|
11 |
+
# sampler_arguments:
|
12 |
+
min_examples: 10000
|
13 |
+
sample_dir: /mnt/data/samples
|
14 |
+
batch_size: 32
|
15 |
+
sample_image_size: 64
|
16 |
+
test_file_list: validation.tsv
|
17 |
+
device: cuda
|
18 |
+
model: unet
|
19 |
+
|
20 |
+
output_dir: /mnt/data/outputs
|
21 |
+
num_diffusion_steps: 1000
|
22 |
+
reproject_signal: false
|
23 |
+
predict_variances: false
|
24 |
+
model_output_scale: 0
|
25 |
+
prediction_type: V_PREDICTION
|
26 |
+
loss_target_type: HA_STYLE
|
27 |
+
schedule_type: DEEPFLOYD
|
28 |
+
prediction_length: 129
|
29 |
+
use_vdm_loss_weights: false
|
30 |
+
loss_factor: 1
|
31 |
+
num_training_steps: 5000
|
32 |
+
num_epochs: 20000
|
33 |
+
avg_lm_steps: 0
|
34 |
+
use_lm_mask: 1
|
35 |
+
categorical_conditioning: 0
|
36 |
+
vocab_file: t5.vocab
|
37 |
+
text_model: google/flan-t5-xl
|
38 |
+
vision_model: unet
|
39 |
+
|
40 |
+
unet_config:
|
41 |
+
num_resnets_per_resolution: [2, 2, 2]
|
42 |
+
attention_levels: [1, 2]
|
43 |
+
num_attention_layers: [0, 1, 5]
|
44 |
+
conditioning_feature_dim: -1
|
45 |
+
conditioning_feature_proj_dim: 2048
|
46 |
+
num_lm_head_layers: 0
|
47 |
+
masked_cross_attention: 0
|
48 |
+
resolution_channels: [256, 512, 768]
|
49 |
+
skip_mid_blocks: False
|
50 |
+
skip_cond_emb: False
|
51 |
+
nesting: False
|
52 |
+
micro_conditioning: 'scale:64'
|
53 |
+
temporal_mode: False
|
54 |
+
temporal_spatial_ds: False
|
55 |
+
temporal_positional_encoding: False
|
56 |
+
resnet_config:
|
57 |
+
num_channels: -1
|
58 |
+
output_channels: -1
|
59 |
+
num_groups_norm: 32
|
60 |
+
dropout: 0.0
|
61 |
+
use_attention_ffn: True
|
62 |
+
diffusion_config:
|
63 |
+
sampler_config:
|
64 |
+
num_diffusion_steps: 1000
|
65 |
+
reproject_signal: False
|
66 |
+
schedule_type: DEEPFLOYD
|
67 |
+
prediction_type: V_PREDICTION
|
68 |
+
loss_target_type: DDPM
|
69 |
+
beta_start: 0.0001
|
70 |
+
beta_end: 0.02
|
71 |
+
threshold_function: CLIP
|
72 |
+
rescale_schedule: 1.0
|
73 |
+
schedule_shifted: False
|
74 |
+
model_output_scale: 0.0
|
75 |
+
use_vdm_loss_weights: False
|
76 |
+
|
77 |
+
reader_config:
|
78 |
+
reader_buffer_size: 500
|
79 |
+
shuffle_buffer_size: 500
|
80 |
+
image_size: 64
|
81 |
+
smaller_side_size: 64
|
82 |
+
random_crop: false
|
83 |
+
max_caption_length: 512
|
84 |
+
max_token_length: 128
|
85 |
+
num_readers: 16
|
86 |
+
|
87 |
+
metrics: fid,clip
|
88 |
+
batch_size: 32
|
89 |
+
gradient_clip_norm: 2
|
90 |
+
num_gradient_accumulations: 1
|
91 |
+
warmup_steps: 10000
|
92 |
+
use_adamw: true
|
93 |
+
log_freq: 50
|
94 |
+
save_freq: 5000
|
95 |
+
lr: 5.0e-05
|
96 |
+
fp16: 0
|
97 |
+
use_precomputed_text_embeddings: 0
|
98 |
+
seed: -1
|
t5.vocab
ADDED
The diff for this file is too large to render.
See raw diff
|
|
vis_model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c9e3e6112a02df719efcbf8964718bb5dea569076b7ff993429526ce7b6b6d67
|
3 |
+
size 1845699386
|