Upload config.json
Browse files- config.json +21 -0
config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "CondUNet2D",
|
| 3 |
+
"checkpoint_step": 45000,
|
| 4 |
+
"precision": "float32",
|
| 5 |
+
"framework": "jax-flax-nnx",
|
| 6 |
+
"format": "msgpack",
|
| 7 |
+
"library_name": "diffuse",
|
| 8 |
+
"architecture": {
|
| 9 |
+
"in_channels": 32,
|
| 10 |
+
"base_channels": 32,
|
| 11 |
+
"channel_multipliers": [1, 2, 2],
|
| 12 |
+
"num_res_blocks": 1,
|
| 13 |
+
"attention_resolutions": [2],
|
| 14 |
+
"num_heads": 4,
|
| 15 |
+
"dropout": true,
|
| 16 |
+
"dropout_rate": 0.1,
|
| 17 |
+
"activation": "swish"
|
| 18 |
+
},
|
| 19 |
+
"model_class": "diffuse.neural_network.CondUNet2D",
|
| 20 |
+
"repo_id": "jcopo/mnist"
|
| 21 |
+
}
|