yinshengming commited on
Commit
569cb36
1 Parent(s): 05bf317

Delete ControlNet/models

Browse files
ControlNet/models/cldm_v15.yaml DELETED
@@ -1,79 +0,0 @@
1
- model:
2
- target: cldm.cldm.ControlLDM
3
- params:
4
- linear_start: 0.00085
5
- linear_end: 0.0120
6
- num_timesteps_cond: 1
7
- log_every_t: 200
8
- timesteps: 1000
9
- first_stage_key: "jpg"
10
- cond_stage_key: "txt"
11
- control_key: "hint"
12
- image_size: 64
13
- channels: 4
14
- cond_stage_trainable: false
15
- conditioning_key: crossattn
16
- monitor: val/loss_simple_ema
17
- scale_factor: 0.18215
18
- use_ema: False
19
- only_mid_control: False
20
-
21
- control_stage_config:
22
- target: cldm.cldm.ControlNet
23
- params:
24
- image_size: 32 # unused
25
- in_channels: 4
26
- hint_channels: 3
27
- model_channels: 320
28
- attention_resolutions: [ 4, 2, 1 ]
29
- num_res_blocks: 2
30
- channel_mult: [ 1, 2, 4, 4 ]
31
- num_heads: 8
32
- use_spatial_transformer: True
33
- transformer_depth: 1
34
- context_dim: 768
35
- use_checkpoint: True
36
- legacy: False
37
-
38
- unet_config:
39
- target: cldm.cldm.ControlledUnetModel
40
- params:
41
- image_size: 32 # unused
42
- in_channels: 4
43
- out_channels: 4
44
- model_channels: 320
45
- attention_resolutions: [ 4, 2, 1 ]
46
- num_res_blocks: 2
47
- channel_mult: [ 1, 2, 4, 4 ]
48
- num_heads: 8
49
- use_spatial_transformer: True
50
- transformer_depth: 1
51
- context_dim: 768
52
- use_checkpoint: True
53
- legacy: False
54
-
55
- first_stage_config:
56
- target: ldm.models.autoencoder.AutoencoderKL
57
- params:
58
- embed_dim: 4
59
- monitor: val/rec_loss
60
- ddconfig:
61
- double_z: true
62
- z_channels: 4
63
- resolution: 256
64
- in_channels: 3
65
- out_ch: 3
66
- ch: 128
67
- ch_mult:
68
- - 1
69
- - 2
70
- - 4
71
- - 4
72
- num_res_blocks: 2
73
- attn_resolutions: []
74
- dropout: 0.0
75
- lossconfig:
76
- target: torch.nn.Identity
77
-
78
- cond_stage_config:
79
- target: ldm.modules.encoders.modules.FrozenCLIPEmbedder
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ControlNet/models/cldm_v21.yaml DELETED
@@ -1,85 +0,0 @@
1
- model:
2
- target: cldm.cldm.ControlLDM
3
- params:
4
- linear_start: 0.00085
5
- linear_end: 0.0120
6
- num_timesteps_cond: 1
7
- log_every_t: 200
8
- timesteps: 1000
9
- first_stage_key: "jpg"
10
- cond_stage_key: "txt"
11
- control_key: "hint"
12
- image_size: 64
13
- channels: 4
14
- cond_stage_trainable: false
15
- conditioning_key: crossattn
16
- monitor: val/loss_simple_ema
17
- scale_factor: 0.18215
18
- use_ema: False
19
- only_mid_control: False
20
-
21
- control_stage_config:
22
- target: cldm.cldm.ControlNet
23
- params:
24
- use_checkpoint: True
25
- image_size: 32 # unused
26
- in_channels: 4
27
- hint_channels: 3
28
- model_channels: 320
29
- attention_resolutions: [ 4, 2, 1 ]
30
- num_res_blocks: 2
31
- channel_mult: [ 1, 2, 4, 4 ]
32
- num_head_channels: 64 # need to fix for flash-attn
33
- use_spatial_transformer: True
34
- use_linear_in_transformer: True
35
- transformer_depth: 1
36
- context_dim: 1024
37
- legacy: False
38
-
39
- unet_config:
40
- target: cldm.cldm.ControlledUnetModel
41
- params:
42
- use_checkpoint: True
43
- image_size: 32 # unused
44
- in_channels: 4
45
- out_channels: 4
46
- model_channels: 320
47
- attention_resolutions: [ 4, 2, 1 ]
48
- num_res_blocks: 2
49
- channel_mult: [ 1, 2, 4, 4 ]
50
- num_head_channels: 64 # need to fix for flash-attn
51
- use_spatial_transformer: True
52
- use_linear_in_transformer: True
53
- transformer_depth: 1
54
- context_dim: 1024
55
- legacy: False
56
-
57
- first_stage_config:
58
- target: ldm.models.autoencoder.AutoencoderKL
59
- params:
60
- embed_dim: 4
61
- monitor: val/rec_loss
62
- ddconfig:
63
- #attn_type: "vanilla-xformers"
64
- double_z: true
65
- z_channels: 4
66
- resolution: 256
67
- in_channels: 3
68
- out_ch: 3
69
- ch: 128
70
- ch_mult:
71
- - 1
72
- - 2
73
- - 4
74
- - 4
75
- num_res_blocks: 2
76
- attn_resolutions: []
77
- dropout: 0.0
78
- lossconfig:
79
- target: torch.nn.Identity
80
-
81
- cond_stage_config:
82
- target: ldm.modules.encoders.modules.FrozenOpenCLIPEmbedder
83
- params:
84
- freeze: True
85
- layer: "penultimate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ControlNet/models/control_sd15_canny.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4de384b16bc2d7a1fb258ca0cbd941d7dd0a721ae996aff89f905299d6923f45
3
- size 5710753329
 
 
 
 
ControlNet/models/control_sd15_depth.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:726cd0b472c4b5c0341b01afcb7fdc4a7b4ab7c37fe797fd394c9805cbef60bf
3
- size 5710753329
 
 
 
 
ControlNet/models/control_sd15_hed.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:00ad5ff2c3ce279332650d79f24a912ef8aa411382fcbde2a20e6239cce65d9c
3
- size 5710750165
 
 
 
 
ControlNet/models/control_sd15_mlsd.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4520b22400756ac96be61f900a59ab648ec487127beb7a095a708a4d3472b6eb
3
- size 5710751843
 
 
 
 
ControlNet/models/control_sd15_normal.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1188b9ac6754c9c846536f51bc5128fef8188ab287fc2c3d5768c3a05e31a0d0
3
- size 5710754879
 
 
 
 
ControlNet/models/control_sd15_openpose.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d19ffffeeaff6d9feb2204b234c3e1b9aec039ab3e63fca07f4fe5646f2ef591
3
- size 5710751843
 
 
 
 
ControlNet/models/control_sd15_scribble.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:591bc5a70a167821634fc3d4870217d7501bd839615540d1cc158579390e9ad3
3
- size 5710757851
 
 
 
 
ControlNet/models/control_sd15_seg.pth DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2c772486812fdd5331a86ee7135f5146dab91f78e6676fab3ec94420708f3a37
3
- size 5710750165