Create config.json
Browse files- config.json +11 -0
config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "UNet2DModel",
|
3 |
+
"_diffusers_version": "0.14.0", // Update to match your installed diffusers version
|
4 |
+
"sample_size": 64,
|
5 |
+
"in_channels": 3,
|
6 |
+
"out_channels": 3,
|
7 |
+
"layers_per_block": 2,
|
8 |
+
"block_out_channels": [64, 128, 256, 512],
|
9 |
+
"down_block_types": ["DownBlock2D", "DownBlock2D", "DownBlock2D", "AttnDownBlock2D"],
|
10 |
+
"up_block_types": ["AttnUpBlock2D", "UpBlock2D", "UpBlock2D", "UpBlock2D"]
|
11 |
+
}
|