itsadarshms commited on
Commit
6b480ca
1 Parent(s): 83dfd48

Add SD1.5 and RVision1.4 motion modules v15

Browse files
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "UNet3DConditionModel",
3
+ "_diffusers_version": "0.22.0.dev0",
4
+ "act_fn": "silu",
5
+ "attention_head_dim": [
6
+ 40,
7
+ 80,
8
+ 160,
9
+ 160
10
+ ],
11
+ "block_out_channels": [
12
+ 320,
13
+ 640,
14
+ 1280,
15
+ 1280
16
+ ],
17
+ "class_embed_type": null,
18
+ "cross_attention_dim": 768,
19
+ "down_block_types": [
20
+ "CrossAttnDownBlock3D",
21
+ "CrossAttnDownBlock3D",
22
+ "CrossAttnDownBlock3D",
23
+ "DownBlock3D"
24
+ ],
25
+ "downsample_padding": 1,
26
+ "in_channels": 4,
27
+ "layers_per_block": 2,
28
+ "mid_block_scale_factor": 1,
29
+ "norm_eps": 1e-05,
30
+ "norm_num_groups": 32,
31
+ "num_attention_heads": null,
32
+ "num_class_embeds": null,
33
+ "only_cross_attention": false,
34
+ "out_channels": 4,
35
+ "resnet_time_scale_shift": "default",
36
+ "sample_size": 64,
37
+ "temporal_module_decoder_only": false,
38
+ "temporal_module_kwargs": {
39
+ "attention_block_types": [
40
+ "Temporal_Self",
41
+ "Temporal_Self"
42
+ ],
43
+ "temporal_position_encoding": true,
44
+ "temporal_position_encoding_max_len": 32,
45
+ "use_temporal_conv": false
46
+ },
47
+ "temporal_module_mid_block": true,
48
+ "temporal_module_resolutions": [
49
+ 1,
50
+ 2,
51
+ 4,
52
+ 8
53
+ ],
54
+ "up_block_types": [
55
+ "UpBlock3D",
56
+ "CrossAttnUpBlock3D",
57
+ "CrossAttnUpBlock3D",
58
+ "CrossAttnUpBlock3D"
59
+ ],
60
+ "upcast_attention": false,
61
+ "use_input_temporal_attention": false,
62
+ "use_linear_projection": false,
63
+ "use_temporal_module": true
64
+ }
diffusion_pytorch_model.realistic_vision_v1.4.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cd620c20fa7c84700fdcdc25125d55c13c4037f027c9f147683c526c63fdd0d
3
+ size 5255921896
diffusion_pytorch_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5960c27a03fe6dbf4522a3709e433b7a8ba8407369c824c72d56e617faa5c8ee
3
+ size 5255921896
scheduler/scheduler_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DDIMScheduler",
3
+ "_diffusers_version": "0.22.0.dev0",
4
+ "beta_end": 0.012,
5
+ "beta_schedule": "linear",
6
+ "beta_start": 0.00085,
7
+ "num_train_timesteps": 1000,
8
+ "prediction_type": "epsilon",
9
+ "set_alpha_to_one": true,
10
+ "steps_offset": 1,
11
+ "trained_betas": null,
12
+ "clip_sample": false
13
+ }