LeanQuant commited on
Commit
2ace206
·
verified ·
1 Parent(s): fe00c6c

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +93 -0
  2. config.json +64 -0
  3. diffusion_pytorch_model.safetensors +3 -0
  4. double_stream_blocks_0.safetensors +3 -0
  5. double_stream_blocks_1.safetensors +3 -0
  6. double_stream_blocks_10.safetensors +3 -0
  7. double_stream_blocks_11.safetensors +3 -0
  8. double_stream_blocks_12.safetensors +3 -0
  9. double_stream_blocks_13.safetensors +3 -0
  10. double_stream_blocks_14.safetensors +3 -0
  11. double_stream_blocks_15.safetensors +3 -0
  12. double_stream_blocks_2.safetensors +3 -0
  13. double_stream_blocks_3.safetensors +3 -0
  14. double_stream_blocks_4.safetensors +3 -0
  15. double_stream_blocks_5.safetensors +3 -0
  16. double_stream_blocks_6.safetensors +3 -0
  17. double_stream_blocks_7.safetensors +3 -0
  18. double_stream_blocks_8.safetensors +3 -0
  19. double_stream_blocks_9.safetensors +3 -0
  20. single_stream_blocks_0.safetensors +3 -0
  21. single_stream_blocks_1.safetensors +3 -0
  22. single_stream_blocks_10.safetensors +3 -0
  23. single_stream_blocks_11.safetensors +3 -0
  24. single_stream_blocks_12.safetensors +3 -0
  25. single_stream_blocks_13.safetensors +3 -0
  26. single_stream_blocks_14.safetensors +3 -0
  27. single_stream_blocks_15.safetensors +3 -0
  28. single_stream_blocks_16.safetensors +3 -0
  29. single_stream_blocks_17.safetensors +3 -0
  30. single_stream_blocks_18.safetensors +3 -0
  31. single_stream_blocks_19.safetensors +3 -0
  32. single_stream_blocks_2.safetensors +3 -0
  33. single_stream_blocks_20.safetensors +3 -0
  34. single_stream_blocks_21.safetensors +3 -0
  35. single_stream_blocks_22.safetensors +3 -0
  36. single_stream_blocks_23.safetensors +3 -0
  37. single_stream_blocks_24.safetensors +3 -0
  38. single_stream_blocks_25.safetensors +3 -0
  39. single_stream_blocks_26.safetensors +3 -0
  40. single_stream_blocks_27.safetensors +3 -0
  41. single_stream_blocks_28.safetensors +3 -0
  42. single_stream_blocks_29.safetensors +3 -0
  43. single_stream_blocks_3.safetensors +3 -0
  44. single_stream_blocks_30.safetensors +3 -0
  45. single_stream_blocks_31.safetensors +3 -0
  46. single_stream_blocks_4.safetensors +3 -0
  47. single_stream_blocks_5.safetensors +3 -0
  48. single_stream_blocks_6.safetensors +3 -0
  49. single_stream_blocks_7.safetensors +3 -0
  50. single_stream_blocks_8.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - HiDream-ai/HiDream-I1-Full
4
+ base_model_relation: quantized
5
+ pipeline_tag: text-to-image
6
+ tags:
7
+ - dfloat11
8
+ - df11
9
+ - lossless compression
10
+ - 70% size, 100% accuracy
11
+ ---
12
+
13
+ # DFloat11 Compressed Model: `HiDream-ai/HiDream-I1-Full`
14
+
15
+ This is a **DFloat11 losslessly compressed** version of the original `HiDream-ai/HiDream-I1-Full` model. It reduces model size by **30%** compared to the original BFloat16 model, while maintaining **bit-identical outputs** and supporting **efficient GPU inference**.
16
+
17
+ 🔥🔥🔥 Thanks to DFloat11 compression, HiDream-I1-Full can now run smoothly on a single 32GB GPU without any quality loss. 🔥🔥🔥
18
+
19
+ ### 📊 Performance Comparison
20
+
21
+ | Metric | HiDream-I1-Full (BFloat16) | HiDream-I1-Full (DFloat11) |
22
+ | ----------------------------------------------- | ------------------- | ------------------- |
23
+ | Model Size | 34.21 GB | 24.19 GB |
24
+ | Peak GPU Memory<br>(1024×1024 image generation) | 35.61 GB | 26.42 GB |
25
+ | Generation Time<br>(A100 GPU) | 140 seconds | 161 seconds |
26
+
27
+ ### 🔧 How to Use
28
+
29
+ 1. Install or upgrade the DFloat11 pip package *(installs the CUDA kernel automatically; requires a CUDA-compatible GPU and PyTorch installed)*:
30
+
31
+ ```bash
32
+ pip install -U dfloat11[cuda12]
33
+ # or if you have CUDA version 11:
34
+ # pip install -U dfloat11[cuda11]
35
+ ```
36
+
37
+ 2. Install or upgrade the diffusers library.
38
+
39
+ ```bash
40
+ pip install -U diffusers
41
+ ```
42
+
43
+ 3. To use the DFloat11 model, run the following example code in Python:
44
+
45
+ ```python
46
+ import torch
47
+ from transformers import AutoTokenizer
48
+ from diffusers import HiDreamImagePipeline
49
+ from dfloat11 import DFloat11Model
50
+
51
+ tokenizer_4 = AutoTokenizer.from_pretrained("DFloat11/Llama-3.1-8B-Instruct-DF11")
52
+ text_encoder_4 = DFloat11Model.from_pretrained("DFloat11/Llama-3.1-8B-Instruct-DF11", device="cpu")
53
+ text_encoder_4.config.output_hidden_states = True
54
+ text_encoder_4.config.output_attentions = True
55
+
56
+ pipe = HiDreamImagePipeline.from_pretrained(
57
+ "HiDream-ai/HiDream-I1-Full",
58
+ tokenizer_4=tokenizer_4,
59
+ text_encoder_4=text_encoder_4,
60
+ torch_dtype=torch.bfloat16,
61
+ )
62
+ DFloat11Model.from_pretrained(
63
+ "DFloat11/HiDream-I1-Full-DF11",
64
+ device="cpu",
65
+ bfloat16_model=pipe.transformer,
66
+ )
67
+ pipe.enable_model_cpu_offload()
68
+
69
+ image = pipe(
70
+ 'A cat wearing a vintage astronaut suit, floating inside a spaceship and gazing out the window at Earth.',
71
+ height=1024,
72
+ width=1024,
73
+ guidance_scale=5.0,
74
+ num_inference_steps=50,
75
+ generator=torch.Generator("cuda").manual_seed(0),
76
+ ).images[0]
77
+ image.save("output.png")
78
+ ```
79
+
80
+
81
+ ### 🔍 How It Works
82
+
83
+ We apply **Huffman coding** to losslessly compress the exponent bits of BFloat16 model weights, which are highly compressible (their 8 bits carry only ~2.6 bits of actual information). To enable fast inference, we implement a highly efficient CUDA kernel that performs on-the-fly weight decompression directly on the GPU.
84
+
85
+ The result is a model that is **~30% smaller**, delivers **bit-identical outputs**, and achieves performance **comparable to the original** BFloat16 model.
86
+
87
+ Learn more in our [research paper](https://arxiv.org/abs/2504.11651).
88
+
89
+ ### 📄 Learn More
90
+
91
+ * **Paper**: [70% Size, 100% Accuracy: Lossless LLM Compression for Efficient GPU Inference via Dynamic-Length Float](https://arxiv.org/abs/2504.11651)
92
+ * **GitHub**: [https://github.com/LeanModels/DFloat11](https://github.com/LeanModels/DFloat11)
93
+ * **HuggingFace**: [https://huggingface.co/DFloat11](https://huggingface.co/DFloat11)
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dfloat11_config": {
3
+ "bytes_per_thread": 8,
4
+ "pattern_dict": {
5
+ "double_stream_blocks\\.\\d+": [
6
+ "block.adaLN_modulation.1",
7
+ "block.attn1.to_q",
8
+ "block.attn1.to_k",
9
+ "block.attn1.to_v",
10
+ "block.attn1.to_out",
11
+ "block.attn1.to_q_t",
12
+ "block.attn1.to_k_t",
13
+ "block.attn1.to_v_t",
14
+ "block.attn1.to_out_t",
15
+ "block.ff_i.shared_experts.w1",
16
+ "block.ff_i.shared_experts.w2",
17
+ "block.ff_i.shared_experts.w3",
18
+ "block.ff_i.experts.0.w1",
19
+ "block.ff_i.experts.0.w2",
20
+ "block.ff_i.experts.0.w3",
21
+ "block.ff_i.experts.1.w1",
22
+ "block.ff_i.experts.1.w2",
23
+ "block.ff_i.experts.1.w3",
24
+ "block.ff_i.experts.2.w1",
25
+ "block.ff_i.experts.2.w2",
26
+ "block.ff_i.experts.2.w3",
27
+ "block.ff_i.experts.3.w1",
28
+ "block.ff_i.experts.3.w2",
29
+ "block.ff_i.experts.3.w3",
30
+ "block.ff_t.w1",
31
+ "block.ff_t.w2",
32
+ "block.ff_t.w3"
33
+ ],
34
+ "single_stream_blocks\\.\\d+": [
35
+ "block.adaLN_modulation.1",
36
+ "block.attn1.to_q",
37
+ "block.attn1.to_k",
38
+ "block.attn1.to_v",
39
+ "block.attn1.to_out",
40
+ "block.ff_i.shared_experts.w1",
41
+ "block.ff_i.shared_experts.w2",
42
+ "block.ff_i.shared_experts.w3",
43
+ "block.ff_i.experts.0.w1",
44
+ "block.ff_i.experts.0.w2",
45
+ "block.ff_i.experts.0.w3",
46
+ "block.ff_i.experts.1.w1",
47
+ "block.ff_i.experts.1.w2",
48
+ "block.ff_i.experts.1.w3",
49
+ "block.ff_i.experts.2.w1",
50
+ "block.ff_i.experts.2.w2",
51
+ "block.ff_i.experts.2.w3",
52
+ "block.ff_i.experts.3.w1",
53
+ "block.ff_i.experts.3.w2",
54
+ "block.ff_i.experts.3.w3"
55
+ ]
56
+ },
57
+ "threads_per_block": [
58
+ 512
59
+ ],
60
+ "version": "0.2.0"
61
+ },
62
+ "model_type": "llama"
63
+ }
64
+
diffusion_pytorch_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77e8e303efea664be0b65955cb1af0cebc2e55fdbfbb291261c043d68faa8686
3
+ size 1092528160
double_stream_blocks_0.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5f9624cc84da2d1fb4ec375208a58b1254dad5a04142465d8268c8c9e15e03b
3
+ size 583644570
double_stream_blocks_1.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8418f6f282da30080acad4f8ed2319ea7f55a4f1f98adf05219b3d2be7d5e8ec
3
+ size 586947990
double_stream_blocks_10.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6e6c8b56a16685744b8e07fc8ca2ec62381fe42591b003dbdabe43144c58655
3
+ size 603645303
double_stream_blocks_11.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb6895964ced9eb11daf097e8d913751d80e1591532c7713a5ce4a159e342262
3
+ size 597617896
double_stream_blocks_12.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afcb4d2f9e116e24c98e9183513b1698e7381706b7466549bf8f4ddec6e6b1df
3
+ size 602955863
double_stream_blocks_13.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b98174c00975c7df518d885ea13463fcce836f7a3e3f181111b072d77bc1ea6c
3
+ size 595058371
double_stream_blocks_14.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31b4b2086c1f41a93320b1c3825e2fbd14146eaddf5fd025f3ec31efe04fd0b9
3
+ size 601235004
double_stream_blocks_15.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4efbc4bc95e2f02b27a75a921041e3db5c5e48ffadf37626e2e33ecf5bbd9840
3
+ size 599366335
double_stream_blocks_2.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03694f1cd3a5863bc428d51e735edf416b45fd9d1fd25c218c844f7eb62a52e5
3
+ size 594297860
double_stream_blocks_3.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:807d116a741dce70c9ac4a0814c47c942a77179e7a155b39e48bae4aa4145069
3
+ size 598902604
double_stream_blocks_4.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:503e5dca3b821893aca68bd56f3b2bcca1e8173cecf75f91c0cca38919d2758c
3
+ size 597367347
double_stream_blocks_5.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96a69e0fd15b1a246bf6824148ee98ba5a32aa1f2bd96612463b06419210df38
3
+ size 595252812
double_stream_blocks_6.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90ff5a902e1f0d88802f78213bcc70d46b044e73e30aac4ed49d4076e42f34f3
3
+ size 602614801
double_stream_blocks_7.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f02d8675f90bcc696ddc777c2d7e34e61aa72355293895963d89bde4c508d61
3
+ size 602582897
double_stream_blocks_8.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c69fbfe63f645df6abcb0b8f87a69ed4fd931a6ffa494904d1b26237b7db721
3
+ size 604627846
double_stream_blocks_9.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a010a580bd604acb2f6aaba52ff85536599b85591189be0ed6a1721181cfc38
3
+ size 602044510
single_stream_blocks_0.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8825479ecacfe15c6b97b510718990ab281c2f2f7e1b118d0b27275dfb2d7a6
3
+ size 421694217
single_stream_blocks_1.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acb7c97ff6a1d75a0ad7aa93cc58dbaa40e41af878dff9e9c746ae21b70520a8
3
+ size 421495765
single_stream_blocks_10.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b22a2e77e5a9a119e46587ee33cebc66c29a58ea74800e4a399e62ddaac2cff1
3
+ size 422767544
single_stream_blocks_11.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed762ca902067b91c2df2e1edab7990c4cf607d46900735de66092fdb927a854
3
+ size 426211327
single_stream_blocks_12.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30b61022eb5a8966b589fb42ec31f233f037a00b48b35919d5abe30ddf455549
3
+ size 423206143
single_stream_blocks_13.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a03d5e0b8033d6ed4195d1c577c1f3589d16d1edd76ad86d37be199048d1b06a
3
+ size 423254541
single_stream_blocks_14.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c55d1a48432dd78826fabdd64fd7d84fb9e30a7fb3f23b09b66f9d9138c5c75d
3
+ size 422616126
single_stream_blocks_15.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3030a18ec5975ee4d9ac61b03cb81f4bf3e7e89c178d3a7f384a0f0c4eddca96
3
+ size 423340210
single_stream_blocks_16.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4ad7e86b188373e9bac83fe6f1678819ccf7cf2e8366153874894771d51f191
3
+ size 424828380
single_stream_blocks_17.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8dc6d8125b33432b0e51f26a40abd9b4c2fe84738bdbe7c7de34958ad0b8068
3
+ size 426480805
single_stream_blocks_18.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cda995a243d8f6317d170845b552970397891bafa019400bf3e7fc491ffd5a93
3
+ size 422870271
single_stream_blocks_19.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0077dcb6c2ec7176a2d81082ef3ca9b537a2e9a8d10cfc70ebbe6ce1a8afa56
3
+ size 422992604
single_stream_blocks_2.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:257ef4b2d3b5b4ed68a685d00996b0698c7a9bfd89aa4a3cc8fae8ade35b68a0
3
+ size 421799617
single_stream_blocks_20.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4864519ec76eff449b775b280f48c4cc2d14c2500efd9d04db2ef1231f7ba9a3
3
+ size 423798830
single_stream_blocks_21.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:786e43bb0d24814153e7f9259e3605f5a7a32df99f1324716833a3353c18d214
3
+ size 424656001
single_stream_blocks_22.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ade747b907d2aa78152b3defe90d4a0e5fd15e34af1ce162e54532724ad2d495
3
+ size 423393555
single_stream_blocks_23.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25ed48b1cad7135ccd0f101f07fd6bbe483704a06d241c998b82f1c3c3d6639c
3
+ size 424314846
single_stream_blocks_24.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02e26791aac99e6dc38404fd70b9c475ebbca2dc63c6af65bd86651619a4748f
3
+ size 424402409
single_stream_blocks_25.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01bbf05dd451ff249293f56ecad193300e338ab026d4972c821e4523064ca443
3
+ size 423600707
single_stream_blocks_26.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3511bd218933241befd8848d529df331c2437a3b78c22a50a3444882e9aed98d
3
+ size 422749903
single_stream_blocks_27.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72a32f5c0ae378b69ba4bcbd61ec202a21279f7764ad2d5637640250f64416d8
3
+ size 423592767
single_stream_blocks_28.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01c3b1b44c3b12c4d512baae0a238062f48476d13c340a89bbd211093569bf2b
3
+ size 417998876
single_stream_blocks_29.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fefddcddc73d8884acc02605f892279bce9f9fcb1f786aec2be242f8f6d47fe
3
+ size 423347646
single_stream_blocks_3.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07a3826209cb186e3923041ed69b905b35870439da2751759ffbfb63fca8e8c6
3
+ size 422143808
single_stream_blocks_30.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9345a61aaab6694683e7750aef916d9fece9d0f6196a78cdc5571a09eaf53ef
3
+ size 416756552
single_stream_blocks_31.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b304feb9bac164733507ec45b8dca69fb72d60f8774862a02359b392e0ca80c
3
+ size 415925631
single_stream_blocks_4.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dc0e476f3160e26b2636f03f3e46895dc28ad7151f60030020005c2c49bfe60
3
+ size 421702297
single_stream_blocks_5.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fedae08357095fd69fefbe5d80342bd31b534ef8144bb780b5aa2a446f9410f
3
+ size 422542974
single_stream_blocks_6.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eabac551eb04321d00db7c2337e4e80959f25938aeeea7068d0d953111d854da
3
+ size 421940515
single_stream_blocks_7.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec462eccee47e6f73dd338efacb4b903c16554c436186d2e45f46dddb24dc42a
3
+ size 425041017
single_stream_blocks_8.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b640b7225d63d76502a4de6dfbc15f26723a94ca2bfab58c47ae7652a79de858
3
+ size 422631645