-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
36 lines (35 loc) · 901 Bytes
/
config.json
File metadata and controls
36 lines (35 loc) · 901 Bytes
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
{
"architecture": "simple_udit",
"autoencoder": "stable_diffusion",
"autoencoder_opts": {
"modelname": "pcuenq/sd-vae-ft-mse-flax"
},
"noise_schedule": "edm",
"input_config": {
"sample_data_key": "image",
"sample_data_shape": [256, 256, 3],
"conditions": [
{
"conditioning_data_key": "text",
"pretokenized": true,
"unconditional_input": "",
"model_key_override": "textcontext"
}
]
},
"model": {
"activation": "jax._src.nn.functions.silu",
"dropout_rate": 0.1,
"dtype": "jax.numpy.float32",
"emb_features": 512,
"mlp_ratio": 4,
"norm_groups": 0,
"num_heads": 8,
"num_layers": 16,
"output_channels": 4,
"patch_size": 2,
"precision": "DEFAULT",
"use_flash_attention": false,
"use_hilbert": false
}
}