Upload config.yaml with huggingface_hub
Browse files- config.yaml +45 -0
config.yaml
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
vae:
|
| 2 |
+
target: direct3d.models.vae.D3D_VAE
|
| 3 |
+
params:
|
| 4 |
+
triplane_res: 32
|
| 5 |
+
triplane_dim: 32
|
| 6 |
+
latent_dim: 16
|
| 7 |
+
num_freqs: 8
|
| 8 |
+
num_attention_heads: 12
|
| 9 |
+
attention_head_dim: 64
|
| 10 |
+
num_encoder_layers: 8
|
| 11 |
+
num_geodecoder_layers: 5
|
| 12 |
+
latents_scale: 2.45
|
| 13 |
+
|
| 14 |
+
dit:
|
| 15 |
+
target: direct3d.models.dit.D3D_DiT
|
| 16 |
+
params:
|
| 17 |
+
attention_bias: true
|
| 18 |
+
attention_head_dim: 72
|
| 19 |
+
num_attention_heads: 16
|
| 20 |
+
semantic_channels: 1024
|
| 21 |
+
pixel_channels: 1024
|
| 22 |
+
in_channels: 16
|
| 23 |
+
out_channels: 16
|
| 24 |
+
num_layers: 44
|
| 25 |
+
patch_size: 2
|
| 26 |
+
sample_size: [32, 96]
|
| 27 |
+
|
| 28 |
+
semantic_encoder:
|
| 29 |
+
target: direct3d.models.condition.ClipImageEncoder
|
| 30 |
+
params:
|
| 31 |
+
version: openai/clip-vit-large-patch14
|
| 32 |
+
|
| 33 |
+
pixel_encoder:
|
| 34 |
+
target: direct3d.models.condition.DinoEncoder
|
| 35 |
+
params:
|
| 36 |
+
version: facebook/dinov2-large
|
| 37 |
+
|
| 38 |
+
scheduler:
|
| 39 |
+
target: diffusers.schedulers.EulerAncestralDiscreteScheduler
|
| 40 |
+
params:
|
| 41 |
+
num_train_timesteps: 1000
|
| 42 |
+
beta_start: 0.0001
|
| 43 |
+
beta_end: 0.02
|
| 44 |
+
beta_schedule: "linear"
|
| 45 |
+
prediction_type: "epsilon"
|