doctorpangloss commited on
Commit
2f42b13
·
1 Parent(s): f2a75b1

Replace checkpoint with MSE-scale INT4 weights

Browse files
Files changed (48) hide show
  1. README.md +53 -40
  2. config.json +4 -1
  3. model-00002-of-00046.safetensors +1 -1
  4. model-00003-of-00046.safetensors +1 -1
  5. model-00004-of-00046.safetensors +1 -1
  6. model-00005-of-00046.safetensors +1 -1
  7. model-00006-of-00046.safetensors +1 -1
  8. model-00007-of-00046.safetensors +1 -1
  9. model-00008-of-00046.safetensors +1 -1
  10. model-00009-of-00046.safetensors +1 -1
  11. model-00010-of-00046.safetensors +1 -1
  12. model-00011-of-00046.safetensors +1 -1
  13. model-00012-of-00046.safetensors +1 -1
  14. model-00013-of-00046.safetensors +1 -1
  15. model-00014-of-00046.safetensors +1 -1
  16. model-00015-of-00046.safetensors +1 -1
  17. model-00016-of-00046.safetensors +1 -1
  18. model-00017-of-00046.safetensors +1 -1
  19. model-00018-of-00046.safetensors +1 -1
  20. model-00019-of-00046.safetensors +1 -1
  21. model-00020-of-00046.safetensors +1 -1
  22. model-00021-of-00046.safetensors +1 -1
  23. model-00022-of-00046.safetensors +1 -1
  24. model-00023-of-00046.safetensors +1 -1
  25. model-00024-of-00046.safetensors +1 -1
  26. model-00025-of-00046.safetensors +1 -1
  27. model-00026-of-00046.safetensors +1 -1
  28. model-00027-of-00046.safetensors +1 -1
  29. model-00028-of-00046.safetensors +1 -1
  30. model-00029-of-00046.safetensors +1 -1
  31. model-00030-of-00046.safetensors +1 -1
  32. model-00031-of-00046.safetensors +1 -1
  33. model-00032-of-00046.safetensors +1 -1
  34. model-00033-of-00046.safetensors +1 -1
  35. model-00034-of-00046.safetensors +1 -1
  36. model-00035-of-00046.safetensors +1 -1
  37. model-00036-of-00046.safetensors +1 -1
  38. model-00037-of-00046.safetensors +1 -1
  39. model-00038-of-00046.safetensors +1 -1
  40. model-00039-of-00046.safetensors +1 -1
  41. model-00040-of-00046.safetensors +1 -1
  42. model-00041-of-00046.safetensors +1 -1
  43. model-00042-of-00046.safetensors +1 -1
  44. model-00043-of-00046.safetensors +1 -1
  45. model-00044-of-00046.safetensors +1 -1
  46. model-00046-of-00046.safetensors +1 -1
  47. model-mtp-shared.safetensors +3 -0
  48. model.safetensors.index.json +4 -1
README.md CHANGED
@@ -12,49 +12,62 @@ tags:
12
 
13
  # DeepSeek V4 Flash dsv4_int INT4/INT8
14
 
15
- This checkpoint is experimental and under active development. It is intended
16
- for the AppMana Ampere vLLM fork and is not a general-purpose Hugging Face
17
- Transformers checkpoint.
18
 
19
- Generated on 2026-05-11 from clean source checkpoint:
20
 
21
- `deepseek-ai/DeepSeek-V4-Flash@fd53f944496234770ba80e15004f9b6d269a71f5`
22
 
23
- Conversion command:
24
 
25
- ```bash
26
- CUDA_VISIBLE_DEVICES=1 python tools/ampere/dsv4_requant_checkpoint.py \
27
- --src /home/administrator/inference/.cache/huggingface/models--deepseek-ai--DeepSeek-V4-Flash/snapshots/fd53f944496234770ba80e15004f9b6d269a71f5 \
28
- --dst /home/administrator/inference/deepseek-v4-flash-dsv4-int-channel-vllm \
29
- --device cuda:0 \
30
- --dense-int8-strategy channel \
31
- --overwrite
32
  ```
33
 
34
- Quantization format:
35
-
36
- - Routed MoE experts: MXFP4 source weights converted to packed symmetric INT4
37
- W4A16, group size 32, for Marlin MoE.
38
- - Dense FP8 linears: channelwise biased UINT8 W8A16 format for the Ampere
39
- AllSpark path where supported.
40
- - Preserved precision: embeddings, norms, gates, attention sinks, HC tensors,
41
- and other tensors marked BF16/F32 in the source.
42
-
43
- Structural audit:
44
-
45
- - Safetensor shards: 46
46
- - Size: about 157 GiB
47
- - Expert INT4 tensors: 33,792
48
- - Dense INT8 tensors: 375
49
- - Preserved tensors: 853
50
- - Missing expert scales: 0
51
-
52
- Known status:
53
-
54
- - The 2-layer version of this conversion path loads and generates locally under
55
- vLLM with compile and CUDA graphs enabled.
56
- - The full 43-layer checkpoint has been converted and structurally audited, but
57
- must still pass a full distributed vLLM load/generation test before treating
58
- it as usable.
59
- - Quality/perplexity is not yet validated. Do not assume this matches the
60
- original FP4/FP8 DeepSeek checkpoint until evaluation says so.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  # DeepSeek V4 Flash dsv4_int INT4/INT8
14
 
15
+ This checkpoint is for the AppMana Ampere vLLM fork:
 
 
16
 
17
+ https://github.com/AppMana/forks-vllm-ampere
18
 
19
+ The container image used for serving is published from that fork.
20
 
21
+ This checkpoint sets:
22
 
23
+ ```json
24
+ "__experimental_enable_imma_from_https://github.com/appMana/forks-vllm-ampere": true
 
 
 
 
 
25
  ```
26
 
27
+ That field is read by the AppMana fork to select the IMMA INT8 paths without
28
+ requiring deployment-specific environment variables.
29
+
30
+ ## Quantization
31
+
32
+ Routed expert weights are converted ahead of time from the native DeepSeek-V4
33
+ MXFP4 expert tensors to INT4 W4A16 for Ampere.
34
+
35
+ For each expert weight tensor:
36
+
37
+ 1. MXFP4 bytes are unpacked into e2m1 values.
38
+ 2. The native e8m0 scale is applied to recover FP32 group values.
39
+ 3. Values are grouped by 32 along the last dimension.
40
+ 4. For `scale_mode="mse"`, the converter tries per-group candidate scales
41
+ `abs_max / div`, with `div` from `5.0` to `9.5`.
42
+ 5. Each candidate scale is rounded to BF16 before scoring.
43
+ 6. For each candidate, INT4 codes are recomputed with
44
+ `round(group / scale).clamp(-8, 7)`.
45
+ 7. The selected scale is the candidate that minimizes
46
+ `sum((q * scale - group) ** 2)` for that group.
47
+
48
+ "MSE scale" means the scale is part of the round-trip quantize/dequantize error
49
+ being minimized. It is not a fixed-scale integer-code MSE, and it is not a
50
+ closed-form least-squares refit after choosing codes.
51
+
52
+ Stored expert format:
53
+
54
+ - signed INT4 values encoded as uint4b8 nibbles (`code + 8`)
55
+ - BF16 per-group scales
56
+ - group size 32
57
+
58
+ Dense/shared expert/attention FP8 weights are converted to the AppMana
59
+ INT8 W8A16 path. Where applicable, the stored tensor is channelwise biased
60
+ UINT8 plus scale metadata.
61
+
62
+ ## Inference implementation
63
+
64
+ | Stage | Technology | Source |
65
+ | --- | --- | --- |
66
+ | Routed expert GEMM | Marlin MoE W4A16 INT4 | vLLM upstream path with AppMana dsv4_int checkpoint loader in https://github.com/AppMana/forks-vllm-ampere |
67
+ | Dense and shared-expert GEMM | AllSpark W8A16 INT8 | AppMana integration in https://github.com/AppMana/forks-vllm-ampere |
68
+ | Sparse MLA prefill/decode attention | AppMana CUDA Flash MLA / Sparse MLA kernel | https://github.com/AppMana/forks-flash-mla-ampere-dsv4 |
69
+ | KV transfer | LMCache connector sidecar | https://github.com/AppMana/forks-lmcache |
70
+
71
+ The quantization loader and conversion metadata are implemented in:
72
+
73
+ https://github.com/AppMana/forks-vllm-ampere/blob/appmana/vllm-ampere/vllm/model_executor/layers/quantization/dsv4_int.py
config.json CHANGED
@@ -2,6 +2,7 @@
2
  "architectures": [
3
  "DeepseekV4ForCausalLM"
4
  ],
 
5
  "attention_bias": false,
6
  "attention_dropout": 0.0,
7
  "bos_token_id": 0,
@@ -41,9 +42,11 @@
41
  "weights": {
42
  "num_bits": 4,
43
  "type": "int",
 
44
  "symmetric": true,
45
  "group_size": 32,
46
- "strategy": "group"
 
47
  },
48
  "input_activations": {
49
  "num_bits": 16,
 
2
  "architectures": [
3
  "DeepseekV4ForCausalLM"
4
  ],
5
+ "__experimental_enable_imma_from_https://github.com/appMana/forks-vllm-ampere": true,
6
  "attention_bias": false,
7
  "attention_dropout": 0.0,
8
  "bos_token_id": 0,
 
42
  "weights": {
43
  "num_bits": 4,
44
  "type": "int",
45
+ "format": "int4",
46
  "symmetric": true,
47
  "group_size": 32,
48
+ "strategy": "group",
49
+ "scale_mode": "mse"
50
  },
51
  "input_activations": {
52
  "num_bits": 16,
model-00002-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f45cbe538d1e8a19d50961f2bf03d782262b96f7f9b481a862349fc9e4bc7728
3
  size 3767747288
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dd8ce3de11ade03e7d78563fee3664e05c34abbc215e8fb1902da09cfd93ce3
3
  size 3767747288
model-00003-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:78ba8ca99ca9dfb140782bc25d59b9338e53c3954db090d130e6e0198141f324
3
  size 3767747288
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3808cfb0e684ddf91087cae2166988b53b1cddc62251778acf2ef13f669217e
3
  size 3767747288
model-00004-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:720321797f7102e20aa3e878891ca9a698d6fd6263b814525dbd81e3c8ca3a83
3
  size 3797671160
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0d779af2432aa43420711952feb9e502ec19d1e78acad5e24d29fc15d12a4cf
3
  size 3797671160
model-00005-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:722c35c96b225a897e34ab6f564d2632c56406976a9a4e944e3e7c43d40ae4ca
3
  size 3770195072
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59fa851f475e1308677521e72e68cb30e4c622df9a71f413d53feaf869e80bbe
3
  size 3770195072
model-00006-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3721dd0544a9faabe7d14737b707201e203d4cd171618fd4ce44790c090aa86e
3
  size 3791466688
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1deb86475844e4f3d02ab230bd35dee295da032cdb302002225faff369b14bdc
3
  size 3791466688
model-00007-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3971de8cb60e0872f55a2888f2d1e3c8ebf3b7fd9edc098c250a5103a17c338e
3
  size 3770195072
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e877d4fbe3a7e303e47c33d0f6454631bf84cc5da3d08e65828273ef26ff8031
3
  size 3770195072
model-00008-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c0af3d7ba6c5b728d2a63c14381a56fb96ff75b6adf65993fc6d41c757ad6d21
3
  size 3791466688
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc688810f3445299ccab4a3ce0a30bbe4dcc12b997c6e77e75dc208769cb4453
3
  size 3791466688
model-00009-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8a41cc2ad488b25d5bdd8017714d6dfb3c1a8a6f21be29a608a3dd8659e4643b
3
  size 3770195072
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f65a304119c1f14e1d86702f4ab7e78d453f8035b817563d85d11f82d86e326d
3
  size 3770195072
model-00010-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bf4729bf5f615cf6bd28d1104693fa76d5fd1404301328291b96d96d204173db
3
  size 3791466688
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2198313ffc4f986d32dc7e3efcd69ec1990a11d5b565d72bc5d302369024d22
3
  size 3791466688
model-00011-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b85ae61378e6d2df39e80422c0228c024017b2c94c3fed5c142829fd4d380ab2
3
  size 3770195072
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:deb060e0faece0766ff5e707214900be071bb5c45b319157b6faf28a9528656c
3
  size 3770195072
model-00012-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0c73491ce42308463caa6857a8d698c532b63006457e1dc024dc2e8cbe4b517e
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0971b02fd36cc5832df7c118b8ba4f6c4bf8fba216f707b0c72d70488a968a4a
3
  size 3791468264
model-00013-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c2654097586c779b4fc230c572c853c3d119807da4875ce8f60a51281aeecbb4
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f03ea98b1ef959ce55c57d4a9c6350837ba40dbbda7b289cc48d77503a319b5c
3
  size 3770196640
model-00014-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e0286ce0a146713824e57fb605165d9d6231bf815b81515ece69e9155a0bf95f
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb6896b22d2c9ef5f5b8b8349988130e70590f1828a5cf4b432ad72339c4c307
3
  size 3791468264
model-00015-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b278dd56dc39a44260232dac17d7e6de2e5b1884258b88684dd8d7ee0e53e6e4
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e85195600449cd096c2a2b7b033a1d1a2c824a980a0ed1ac01404ba36b28644
3
  size 3770196640
model-00016-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d28761c1af0f92a3be94e1fa65a7c9f0f254ca78d5b04cd054f7c493badffd78
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbcdc08615451cc07a2699435e14c42ad71f922899cb3c95c1a22b0f4a9b18f7
3
  size 3791468264
model-00017-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5498be5f84c500f50912608e82652508ff4242c7cd8913f449b2d089291b7d09
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb6e89801414f9878f42c1c1dfebf7df7572748aeb6484641616edba6fd38411
3
  size 3770196640
model-00018-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:80a8785132e9566bc0889b86af88d4abbc68cd214d19f375701300966ca36701
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6217ff22b342c507dd4700f94754637a935ca08c735e7b67943fdc44e70d2f64
3
  size 3791468264
model-00019-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5887bf5234fde8ab4213a82c256b88c215144cf0b65d7436eebceaca7b103f13
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aaa19e074e301b689bd37225109f9b1497782613d2f8c8de502b5a8da9d7fe8f
3
  size 3770196640
model-00020-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:56d54639526a781c151b7414ce2d4125cdc945b4fc6911c6edd13ca3a8a49c2c
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98b49029634835dddab4db8aca29d7657e2e73087df6d812301ec33f81feaa19
3
  size 3791468264
model-00021-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4443e4f594a3124eb672fa5f1b7f2a184c6101d7349fb7a7754fef01e6fd4b37
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a9f42a13f106a4de4c4a0958e3f7d3c516244a4f9ae7d2939a9ae2ff33daa4a
3
  size 3770196640
model-00022-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:17eb4b7b83490c763e9b39c8c6d898436e872a96beeca5521cd245eadba5d117
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:413492e41b25538605364567f2063fc1d358260bfec6c8dbdb83df32141c7e76
3
  size 3791468264
model-00023-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2db4c6d73a87280d9571dc439be80aacbe6d09d3c971882f7e6e0a2f9a171e8
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:363278e2a2587d8491431bc7031398ddb38ff9f77c879ced292f71ecb06677ba
3
  size 3770196640
model-00024-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:00df91c2b43f7aff73e686ae0c1d6b31c12e769a46effed8507b756f84c779e0
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0b40269eba8e7d42f06644c9b51e97ae4e297f50a63b644e2b1cd1aab630b9b
3
  size 3791468264
model-00025-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b173b7f4b3f07188f14de664ac0a1b21aa374dcb2a2a62b2b2a6d9f9969f428a
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddb920cf2b430cb04c6845fa079de8173ab127ab85fac18e9e7256dfb59cfbbc
3
  size 3770196640
model-00026-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7dcd084df0deb4e8436d706d2d4b1d128b96c93a362bc39540bb7c9ee26f9394
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9ffefe5ec18a6f96ca3d7b116f4a447be5afb798e3e1a9eb6c2e6682c9852bc
3
  size 3791468264
model-00027-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e67fc21051b363a6156ec16284fe76d8c1fbc850b1049f60795cb9d16d7fbeaf
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3fe40c4b43aff787d5c83fff4c3b5e3aea285ba4e716cc134420f4d154182b2
3
  size 3770196640
model-00028-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c6803d59efbe77cf98e1dd13c17d694b9df935b4ce7f5886fc6649a283724817
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:559392b24ba9a240903669bd46faf5fbea727072806296247215601dca869b3d
3
  size 3791468264
model-00029-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7cc85f809cc348d2cf49072a3e6b445fd213738ea406061459a1d1bcb4e413f1
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b02f9a99ce5413a6de329505d21439de0e3f0b9d473290abadb3495d2be196c7
3
  size 3770196640
model-00030-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b3ea8550f20060362e548b9c4375f4b629a11ac8c1ec7d6b4cdba05f2e3e0249
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e77e20eb315aad00ee383a318f959159bd2b1724af5d186446cf45ab61193ed
3
  size 3791468264
model-00031-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a38fa8107df80e2cfe833cac511dab3624d4666a31d2b25770f8cd0512dd8372
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:530100b976cf059200cc99fd694d6e4b1774a3e4e533b9c5da28d6585a6dd78a
3
  size 3770196640
model-00032-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3838abae1179e9ab050fa7dafb73992d4ba558dd1ea0b156203e66acc85f2703
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc8234359e55099c84eb14b5862906d7d9a5cc770f8536bae9ed667e501dc9c5
3
  size 3791468264
model-00033-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:077b8d1bf5638483d22aa1793745aba79abe334f4c32833f5344aa8a4afd51aa
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:596dc3c4f2c1a2f71f7cd88ee92bc6763a4e4bf3713b26f54545a16ff70ecb45
3
  size 3770196640
model-00034-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:27730b2daa791874def2712dbe9c40f0f9a782f2d41500d2948e7b7ad2a6ded9
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac5f40cc2e00faf49b93c2de6963c65993deb69c80337f950680f8b6f40987dd
3
  size 3791468264
model-00035-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f195d6bdc1b0c00d64b7fc56950d6d190e144c1512481a16cebb85d314d1fad2
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07c3f263c9865bae132a92963334ab0757d4c02d85a06c65ff101085d59cd84e
3
  size 3770196640
model-00036-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:94107f1aa53421b6faa49e499772a3e7a1edac3a371e2459bc85282655803bbd
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f0c74b24b43d593d4062970168e76e6c66fcaaca1d5176d1ea3539d4f0a930b
3
  size 3791468264
model-00037-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c12585ff57f1fc51ffc2c3e4cfb739815b7ca8eebab8785eea0245b4ace00bdb
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e4028119d1f2fc4b468b2d99cb1dad7f2a5c159d599b2f75704d87d44dff96c
3
  size 3770196640
model-00038-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:993ed09b95c958bbcad1077555a4db3c681b9dfb885a5e9a27110fce70f84237
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d83c5427a5ab3e48e5fec220e969807fd260ad78b89f4c894b9b2e6b0c5357d8
3
  size 3791468264
model-00039-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2baa7b4b3ff96063b1f1fcf30c8ec3f94b78cfc8a267b39de4401f826d987b1c
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9745ef742176bb6fa4e09e28ce97f7768db79a7070058cbe509d9fe69d473c77
3
  size 3770196640
model-00040-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:52954e26522b004c69d1f2daef22a4b435c3677bcd17217963aa52160899b2a0
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3acaa115a03fda5884390e7426308da716cbaee1bff40e19dee5654f6ebafcf
3
  size 3791468264
model-00041-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4784664f8f54dc3fb1c3d3ffa640a898f494a68724b3f06123848b137fecc274
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96684dab0530583eb672d43271fa88c6bb58c77a76c2aca4a77f72194d558568
3
  size 3770196640
model-00042-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7e67ba4908bf23edc72ed030e19b8e23f5dd7833b20208f3155d4c4a73ad0fca
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d44febce460d1f1810815fe595f8c6165f7200b659337db042cdcd67e1a0c70
3
  size 3791468264
model-00043-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:781c476a97d280edd6f3f816984b7947d090beadcdf5b4c356bfc9142b10aa75
3
  size 3770196640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:499f7600d7bf1cc082332e116703c7d755d0e309d79320b732e4f08a3cfa4636
3
  size 3770196640
model-00044-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:15e2e44878441d42083bb51f9180472c53388aa48d63c80db9c6f851a6db671d
3
  size 3791468264
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e7c59b873e7102305e96e41c45de15ce48fc5c2c55dfe6251165f39ab909246
3
  size 3791468264
model-00046-of-00046.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:861dd01896a403acab362397267122d5571f390f0fe1714107ea39895c1587ff
3
  size 3795396540
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:444c93c8e1b8e934115d6f7af3c92c35897d808d06c490743653fa52bdad05cb
3
  size 3795396540
model-mtp-shared.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d9fe1fea8d63814926e74dbe3b0604767d9a0fa6b1c3e8641fcde042da11869
3
+ size 2118123728
model.safetensors.index.json CHANGED
@@ -1,6 +1,7 @@
1
  {
2
  "metadata": {
3
- "total_size": 159609485896
 
4
  },
5
  "weight_map": {
6
  "embed.weight": "model-00001-of-00046.safetensors",
@@ -67630,6 +67631,7 @@
67630
  "mtp.0.attn_norm.weight": "model-00046-of-00046.safetensors",
67631
  "mtp.0.e_proj.scale": "model-00046-of-00046.safetensors",
67632
  "mtp.0.e_proj.weight": "model-00046-of-00046.safetensors",
 
67633
  "mtp.0.enorm.weight": "model-00046-of-00046.safetensors",
67634
  "mtp.0.ffn.experts.0.w1.scale": "model-00046-of-00046.safetensors",
67635
  "mtp.0.ffn.experts.0.w1.weight": "model-00046-of-00046.safetensors",
@@ -69187,6 +69189,7 @@
69187
  "mtp.0.hc_head_base": "model-00046-of-00046.safetensors",
69188
  "mtp.0.hc_head_fn": "model-00046-of-00046.safetensors",
69189
  "mtp.0.hc_head_scale": "model-00046-of-00046.safetensors",
 
69190
  "mtp.0.hnorm.weight": "model-00046-of-00046.safetensors",
69191
  "mtp.0.norm.weight": "model-00046-of-00046.safetensors",
69192
  "norm.weight": "model-00045-of-00046.safetensors"
 
1
  {
2
  "metadata": {
3
+ "mtp_shared_tensors": "materialized",
4
+ "total_size": "170598367456"
5
  },
6
  "weight_map": {
7
  "embed.weight": "model-00001-of-00046.safetensors",
 
67631
  "mtp.0.attn_norm.weight": "model-00046-of-00046.safetensors",
67632
  "mtp.0.e_proj.scale": "model-00046-of-00046.safetensors",
67633
  "mtp.0.e_proj.weight": "model-00046-of-00046.safetensors",
67634
+ "mtp.0.emb.tok_emb.weight": "model-mtp-shared.safetensors",
67635
  "mtp.0.enorm.weight": "model-00046-of-00046.safetensors",
67636
  "mtp.0.ffn.experts.0.w1.scale": "model-00046-of-00046.safetensors",
67637
  "mtp.0.ffn.experts.0.w1.weight": "model-00046-of-00046.safetensors",
 
69189
  "mtp.0.hc_head_base": "model-00046-of-00046.safetensors",
69190
  "mtp.0.hc_head_fn": "model-00046-of-00046.safetensors",
69191
  "mtp.0.hc_head_scale": "model-00046-of-00046.safetensors",
69192
+ "mtp.0.head.weight": "model-mtp-shared.safetensors",
69193
  "mtp.0.hnorm.weight": "model-00046-of-00046.safetensors",
69194
  "mtp.0.norm.weight": "model-00046-of-00046.safetensors",
69195
  "norm.weight": "model-00045-of-00046.safetensors"
Free AI Image Generator No sign-up. Instant results. Open Now