This view is limited to 50 files because it contains too many changes. See the raw diff here.
Files changed (50) hide show
  1. chat_template.jinja +101 -0
  2. config.json +6 -3
  3. generation_config.json +1 -1
  4. model-00001-of-00082.safetensors +3 -0
  5. model-00002-of-00082.safetensors +3 -0
  6. model-00003-of-00082.safetensors +3 -0
  7. model-00004-of-00082.safetensors +3 -0
  8. model-00005-of-00082.safetensors +3 -0
  9. model-00006-of-00082.safetensors +3 -0
  10. model-00007-of-00082.safetensors +3 -0
  11. model-00008-of-00082.safetensors +3 -0
  12. model-00009-of-00082.safetensors +3 -0
  13. model-00010-of-00082.safetensors +3 -0
  14. model-00011-of-00082.safetensors +3 -0
  15. model-00012-of-00082.safetensors +3 -0
  16. model-00013-of-00082.safetensors +3 -0
  17. model-00014-of-00082.safetensors +3 -0
  18. model-00015-of-00082.safetensors +3 -0
  19. model-00016-of-00082.safetensors +3 -0
  20. model-00017-of-00082.safetensors +3 -0
  21. model-00018-of-00082.safetensors +3 -0
  22. model-00019-of-00082.safetensors +3 -0
  23. model-00020-of-00082.safetensors +3 -0
  24. model-00021-of-00082.safetensors +3 -0
  25. model-00022-of-00082.safetensors +3 -0
  26. model-00023-of-00082.safetensors +3 -0
  27. model-00024-of-00082.safetensors +3 -0
  28. model-00025-of-00082.safetensors +3 -0
  29. model-00026-of-00082.safetensors +3 -0
  30. model-00027-of-00082.safetensors +3 -0
  31. model-00028-of-00082.safetensors +3 -0
  32. model-00029-of-00082.safetensors +3 -0
  33. model-00030-of-00082.safetensors +3 -0
  34. model-00031-of-00082.safetensors +3 -0
  35. model-00032-of-00082.safetensors +3 -0
  36. model-00033-of-00082.safetensors +3 -0
  37. model-00034-of-00082.safetensors +3 -0
  38. model-00035-of-00082.safetensors +3 -0
  39. model-00036-of-00082.safetensors +3 -0
  40. model-00037-of-00082.safetensors +3 -0
  41. model-00038-of-00082.safetensors +3 -0
  42. model-00039-of-00082.safetensors +3 -0
  43. model-00040-of-00082.safetensors +3 -0
  44. model-00041-of-00082.safetensors +3 -0
  45. model-00042-of-00082.safetensors +3 -0
  46. model-00043-of-00082.safetensors +3 -0
  47. model-00044-of-00082.safetensors +3 -0
  48. model-00045-of-00082.safetensors +3 -0
  49. model-00046-of-00082.safetensors +3 -0
  50. model-00047-of-00082.safetensors +3 -0
chat_template.jinja ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if not add_generation_prompt is defined %}
2
+ {%- set add_generation_prompt = false %}
3
+ {%- endif %}
4
+ {%- set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='', is_first_sp=true, is_last_user=false) %}
5
+ {%- for message in messages %}
6
+ {%- if message['role'] == 'system' %}
7
+ {%- if ns.is_first_sp %}
8
+ {%- set ns.system_prompt = ns.system_prompt + message['content'] %}
9
+ {%- set ns.is_first_sp = false %}
10
+ {%- else %}
11
+ {%- set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}
12
+ {%- endif %}
13
+ {%- endif %}
14
+ {%- endfor %}
15
+
16
+ {#- Adapted from https://github.com/sgl-project/sglang/blob/main/examples/chat_template/tool_chat_template_deepseekr1.jinja #}
17
+ {%- if tools is defined and tools is not none %}
18
+ {%- set tool_ns = namespace(text='You are a helpful assistant with tool calling capabilities. ' + 'When a tool call is needed, you MUST use the following format to issue the call:\n' + '<|tool▁calls▁begin|><|tool▁call▁begin|>function<|tool▁sep|>FUNCTION_NAME\n' + '```json\n{"param1": "value1", "param2": "value2"}\n```<|tool▁call▁end|><|tool▁calls▁end|>\n\n' + 'Make sure the JSON is valid.' + '## Tools\n\n### Function\n\nYou have the following functions available:\n\n') %}
19
+ {%- for tool in tools %}
20
+ {%- set tool_ns.text = tool_ns.text + '\n```json\n' + (tool | tojson) + '\n```\n' %}
21
+ {%- endfor %}
22
+ {%- if ns.system_prompt|length != 0 %}
23
+ {%- set ns.system_prompt = ns.system_prompt + '\n\n' + tool_ns.text %}
24
+ {%- else %}
25
+ {%- set ns.system_prompt = tool_ns.text %}
26
+ {%- endif %}
27
+ {%- endif %}
28
+ {{- bos_token }}
29
+ {{- ns.system_prompt }}
30
+ {%- set last_index = (messages|length - 1) %}
31
+ {%- for message in messages %}
32
+ {%- set content = message['content'] %}
33
+ {%- if message['role'] == 'user' %}
34
+ {%- set ns.is_tool = false -%}
35
+ {%- set ns.is_first = false -%}
36
+ {%- set ns.is_last_user = true -%}
37
+ {%- if loop.index0 == last_index %}
38
+ {{- '<|User|>' + content }}
39
+ {%- else %}
40
+ {{- '<|User|>' + content + '<|Assistant|>'}}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if message['role'] == 'assistant' %}
44
+ {%- if '</think>' in content %}
45
+ {%- set content = (content.split('</think>')|last) %}
46
+ {%- endif %}
47
+ {%- endif %}
48
+ {%- if message['role'] == 'assistant' and message['tool_calls'] is defined and message['tool_calls'] is not none %}
49
+ {%- set ns.is_last_user = false -%}
50
+ {%- if ns.is_tool %}
51
+ {{- '<|tool▁outputs▁end|>'}}
52
+ {%- endif %}
53
+ {%- set ns.is_first = false %}
54
+ {%- set ns.is_tool = false -%}
55
+ {%- set ns.is_output_first = true %}
56
+ {%- for tool in message['tool_calls'] %}
57
+ {%- set arguments = tool['function']['arguments'] %}
58
+ {%- if arguments is not string %}
59
+ {%- set arguments = arguments|tojson %}
60
+ {%- endif %}
61
+ {%- if not ns.is_first %}
62
+ {%- if content is none %}
63
+ {{- '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + arguments + '\n' + '```' + '<|tool▁call▁end|>'}}
64
+ }
65
+ {%- else %}
66
+ {{- content + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + arguments + '\n' + '```' + '<|tool▁call▁end|>'}}
67
+ {%- endif %}
68
+ {%- set ns.is_first = true -%}
69
+ {%- else %}
70
+ {{- '\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + arguments + '\n' + '```' + '<|tool▁call▁end|>'}}
71
+ {%- endif %}
72
+ {%- endfor %}
73
+ {{- '<|tool▁calls▁end|><|end▁of▁sentence|>'}}
74
+ {%- endif %}
75
+ {%- if message['role'] == 'assistant' and (message['tool_calls'] is not defined or message['tool_calls'] is none) %}
76
+ {%- set ns.is_last_user = false -%}
77
+ {%- if ns.is_tool %}
78
+ {{- '<|tool▁outputs▁end|>' + content + '<|end▁of▁sentence|>'}}
79
+ {%- set ns.is_tool = false -%}
80
+ {%- else %}
81
+ {{- content + '<|end▁of▁sentence|>'}}
82
+ {%- endif %}
83
+ {%- endif %}
84
+ {%- if message['role'] == 'tool' %}
85
+ {%- set ns.is_last_user = false -%}
86
+ {%- set ns.is_tool = true -%}
87
+ {%- if ns.is_output_first %}
88
+ {{- '<|tool▁outputs▁begin|><|tool▁output▁begin|>' + content + '<|tool▁output▁end|>'}}
89
+ {%- set ns.is_output_first = false %}
90
+ {%- else %}
91
+ {{- '\n<|tool▁output▁begin|>' + content + '<|tool▁output▁end|>'}}
92
+ {%- endif %}
93
+ {%- endif %}
94
+ {%- endfor -%}
95
+ {%- if ns.is_tool %}
96
+ {{- '<|tool▁outputs▁end|>'}}
97
+ {%- endif %}
98
+ {#- if add_generation_prompt and not ns.is_last_user and not ns.is_tool #}
99
+ {%- if add_generation_prompt and not ns.is_tool %}
100
+ {{- '<|Assistant|>'}}
101
+ {%- endif %}
config.json CHANGED
@@ -10,6 +10,7 @@
10
  "AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
11
  },
12
  "bos_token_id": 0,
 
13
  "eos_token_id": 1,
14
  "ep_size": 1,
15
  "first_k_dense_replace": 3,
@@ -38,6 +39,7 @@
38
  "quantization_config": {
39
  "algo_config": null,
40
  "exclude": [
 
41
  "model.layers.0.self_attn.q_a_proj",
42
  "model.layers.0.self_attn.q_b_proj",
43
  "model.layers.0.self_attn.kv_a_proj_with_mqa",
@@ -387,12 +389,14 @@
387
  "symmetric": null
388
  }
389
  },
 
 
390
  "layer_quant_config": {},
391
  "layer_type_quant_config": {},
392
  "quant_method": "quark",
393
  "quant_mode": "eager_mode",
394
  "softmax_quant_spec": null,
395
- "version": "0.10+577c94ac99"
396
  },
397
  "rms_norm_eps": 1e-06,
398
  "rope_scaling": {
@@ -410,8 +414,7 @@
410
  "tie_word_embeddings": false,
411
  "topk_group": 4,
412
  "topk_method": "noaux_tc",
413
- "torch_dtype": "bfloat16",
414
- "transformers_version": "4.51.3",
415
  "unsloth_fixed": true,
416
  "use_cache": true,
417
  "v_head_dim": 128,
 
10
  "AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
11
  },
12
  "bos_token_id": 0,
13
+ "dtype": "bfloat16",
14
  "eos_token_id": 1,
15
  "ep_size": 1,
16
  "first_k_dense_replace": 3,
 
39
  "quantization_config": {
40
  "algo_config": null,
41
  "exclude": [
42
+ "re:model.layers.61.*",
43
  "model.layers.0.self_attn.q_a_proj",
44
  "model.layers.0.self_attn.q_b_proj",
45
  "model.layers.0.self_attn.kv_a_proj_with_mqa",
 
389
  "symmetric": null
390
  }
391
  },
392
+ "kv_cache_post_rope": false,
393
+ "kv_cache_quant_config": {},
394
  "layer_quant_config": {},
395
  "layer_type_quant_config": {},
396
  "quant_method": "quark",
397
  "quant_mode": "eager_mode",
398
  "softmax_quant_spec": null,
399
+ "version": "0.11"
400
  },
401
  "rms_norm_eps": 1e-06,
402
  "rope_scaling": {
 
414
  "tie_word_embeddings": false,
415
  "topk_group": 4,
416
  "topk_method": "noaux_tc",
417
+ "transformers_version": "4.57.1",
 
418
  "unsloth_fixed": true,
419
  "use_cache": true,
420
  "v_head_dim": 128,
generation_config.json CHANGED
@@ -5,5 +5,5 @@
5
  "eos_token_id": 1,
6
  "temperature": 0.6,
7
  "top_p": 0.95,
8
- "transformers_version": "4.51.3"
9
  }
 
5
  "eos_token_id": 1,
6
  "temperature": 0.6,
7
  "top_p": 0.95,
8
+ "transformers_version": "4.57.1"
9
  }
model-00001-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18dbe98abe48f2c7d84cb28a2b97101b72634a2888e3d6eb7a8d6fbf5281b3ba
3
+ size 4995884768
model-00002-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d0d18aabfc7cce4d182027358d7ffd4504ac6278c9c9ca12bb60dd8975ff86e
3
+ size 4995052496
model-00003-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:673d355712864dbd1f27314c0360f0a963e0ee9452ea36c8ae42bee4a4990756
3
+ size 4999071368
model-00004-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7b4f4daa2b95ce73e353a8fef1f049bc07c75125bbc6fa601b554440adadd81
3
+ size 4994943096
model-00005-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:effea69cc5740f7ea8b94d7b4af9311c483a4b5bdd59b5eeb0a36cd47f7e6ae1
3
+ size 4994943232
model-00006-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:683ef342bcc6c2d72c94e35d35b384f9821ef27afb9d78573279fd287aa9e385
3
+ size 4994943456
model-00007-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e4837be87f1a2876a0012f4da8b380b06c4a683b53974195ff24b2b7411bcad
3
+ size 4999180624
model-00008-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5fe73fa25a336e6be2707c63474d96b0add20015a4317dde154953ffcc343d2
3
+ size 4994943096
model-00009-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:165cdcb1f16f14ef6a83851960d46375dbaabf7c172336cf38456942c879303c
3
+ size 4994943096
model-00010-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d55d0234e36694eb8575633f04612cbee1be0b055f5f41d8519975a7060eb353
3
+ size 4994943720
model-00011-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08a97b781181af8e0c81d0837a559b13711480de19de251df87c61a2ab2f50f3
3
+ size 4916044152
model-00012-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57b62c10bde8448a29f71160465ba9cf418545e124fa145ca9a6c855745cd42a
3
+ size 5000091936
model-00013-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fe8b74198c04e16b7a0301385e2248815338eb0af42aca2efb7e4b100fa9ee5
3
+ size 4994944296
model-00014-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81dc88daf114818e8ad9866ef85c403869b7b4391af2f92bc5092344e4a3df55
3
+ size 4994944392
model-00015-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28a0848194500e9f8daff3e3c3b20ec8b52cea81b8b7869e7a2daad7b0f2b5f9
3
+ size 4994944648
model-00016-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce8407bd0d3ac2397a66e75f86034e7789cb547846b2bea484d293f1222041de
3
+ size 4999181952
model-00017-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37f9bbf0b681bdbb51f09045a4894cc4c91ff86aca6a040a03d959a1b04f86c9
3
+ size 4994944288
model-00018-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c67808e128166d99dd2285e6454668bdbb205a9d9efa88bcc51a4187fce22282
3
+ size 4994944296
model-00019-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4d41bad246c7fca9ea4b052e3200c84642f20e855e3d1caf78f5dd7ec9f7cc8
3
+ size 4994944536
model-00020-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:062665046cb9cb0e49f0ca7a194cd0b11a22e57e2604e6d75231705bb274207c
3
+ size 4767862480
model-00021-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a109448c141bbca3c63ec74444b6bdf07ac997acd9e3d25d935403f6ea57f576
3
+ size 5000091936
model-00022-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ba1783ead4f05432085a1de14f0fb7c19de024f8de671fd38881fc046ade127
3
+ size 4994944296
model-00023-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5219488f545c644e71eb3d1eb75032c34dd89601a6249f29533336a0f1a6e4c0
3
+ size 4994944392
model-00024-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9ee834cc694739ddb1b118a3658c600ebc81f0f3b8169f33940bb4501dc5742
3
+ size 4994944648
model-00025-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b96f16d81ccbdbbc7ab261be03bc07070c2bc00e27a6e47cf7f36b87463017e
3
+ size 4999181952
model-00026-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcf31ec6ae326831ccfd684b99e4642193606baf2c116f3903b57c81e1e28fa8
3
+ size 4994944288
model-00027-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:059afaaf6c34ee1d1826fe85f859d4a3a86c404f274eaf9e3e871e168c405fc6
3
+ size 4994944296
model-00028-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4d2b6363a3be0f08947d8f83d71f5b9985ef67acb231db25d1b0d96216c15b1
3
+ size 4994944536
model-00029-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0ae064e782c09e2656598ffd40d71dca996e8fdc6c9a06397e976b91eb83914
3
+ size 4767862480
model-00030-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd6637572be2f16e282a1681e30c3d35ebe60d29f7a43e3efaa69be2cf6e8f6e
3
+ size 5000091936
model-00031-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3601bdcbc7cf88fd65faf66f82b096e58b8efe5753278e914a253e7c9d65af17
3
+ size 4994944296
model-00032-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:282a65080530b3414164124adea2fc874343eec6393010780818a5a581677a86
3
+ size 4994944392
model-00033-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:509b077f714559ea4084aabd88bfaecf3dfd0f93250b9f3b836512b0b29dafb4
3
+ size 4994944648
model-00034-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b564d29b021df8fc56a990de50a0d2c7f0354636ed1ce39eb9109bb89a9962b
3
+ size 4999181952
model-00035-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7a6772db37a06a7033f8dd902a0873eaccb897e4332b72bda489ddaed49ed5e
3
+ size 4994944288
model-00036-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b087e16feb88f56ec6e75e2d2d6d5a40e2300754a7601b23cd4adb6b61ddebb
3
+ size 4994944296
model-00037-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:503e5e5d916120f954937fa31f8a8868e07fb2ae3c0d3851f80add2c864a5f2b
3
+ size 4994944536
model-00038-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cd876c9d8b73a45da3e38fc2245da325d8bd8087c16bde87e972b16ad87d4cb
3
+ size 4767862480
model-00039-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68299e7dd1be2f23bde4b3edd8035f1eb0f27e118f245ebea5c30f7c0d0ba748
3
+ size 5000091936
model-00040-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b18d545c348f00cf557de60f50a77f421c0375c7bcf4efec8ae707df2bc9d294
3
+ size 4994944296
model-00041-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc2ccd0ea0b2ba73074674c8c66b994b94711f3f89452dfc5f527c7b5ec4db84
3
+ size 4994944392
model-00042-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49a1d0d5712e4883ec88de234f83bd555c028052b525c4d75aa7cdf164fe252e
3
+ size 4994944648
model-00043-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3777ce084609b712999c04974765608ed8fc53d53dbb4b9a32aa4edc5e31e759
3
+ size 4999181952
model-00044-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c5aace2e6d240cd46e71c64a2b1a6c54a910428d7aacddf290ee4f2283ab36e
3
+ size 4994944288
model-00045-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22300a5cbe541012f4eb354ae2998cb49cb8fdaa2b5471d1c48dd97d297ca56e
3
+ size 4994944296
model-00046-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fb7f3ecd38ece6ead75a735b22ad44d9f84fd461cdfbf3f822cbcef70726f66
3
+ size 4994944536
model-00047-of-00082.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e9cea92f2e38b2f5f953838410058530cdb5213efcf2d5413cba6bce067db7d
3
+ size 4767862480