rakuten-sunilkumar-yadav commited on
Commit
9a25e1e
·
verified ·
1 Parent(s): 3077351

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. chat_template.json +91 -0
  2. config.json +65 -0
  3. model-00001-of-000163.safetensors +3 -0
  4. model-00002-of-000163.safetensors +3 -0
  5. model-00003-of-000163.safetensors +3 -0
  6. model-00004-of-000163.safetensors +3 -0
  7. model-00005-of-000163.safetensors +3 -0
  8. model-00006-of-000163.safetensors +3 -0
  9. model-00007-of-000163.safetensors +3 -0
  10. model-00008-of-000163.safetensors +3 -0
  11. model-00009-of-000163.safetensors +3 -0
  12. model-00010-of-000163.safetensors +3 -0
  13. model-00011-of-000163.safetensors +3 -0
  14. model-00012-of-000163.safetensors +3 -0
  15. model-00013-of-000163.safetensors +3 -0
  16. model-00014-of-000163.safetensors +3 -0
  17. model-00015-of-000163.safetensors +3 -0
  18. model-00016-of-000163.safetensors +3 -0
  19. model-00017-of-000163.safetensors +3 -0
  20. model-00018-of-000163.safetensors +3 -0
  21. model-00019-of-000163.safetensors +3 -0
  22. model-00020-of-000163.safetensors +3 -0
  23. model-00021-of-000163.safetensors +3 -0
  24. model-00022-of-000163.safetensors +3 -0
  25. model-00023-of-000163.safetensors +3 -0
  26. model-00024-of-000163.safetensors +3 -0
  27. model-00025-of-000163.safetensors +3 -0
  28. model-00026-of-000163.safetensors +3 -0
  29. model-00027-of-000163.safetensors +3 -0
  30. model-00028-of-000163.safetensors +3 -0
  31. model-00029-of-000163.safetensors +3 -0
  32. model-00030-of-000163.safetensors +3 -0
  33. model-00031-of-000163.safetensors +3 -0
  34. model-00032-of-000163.safetensors +3 -0
  35. model-00033-of-000163.safetensors +3 -0
  36. model-00034-of-000163.safetensors +3 -0
  37. model-00035-of-000163.safetensors +3 -0
  38. model-00036-of-000163.safetensors +3 -0
  39. model-00037-of-000163.safetensors +3 -0
  40. model-00038-of-000163.safetensors +3 -0
  41. model-00039-of-000163.safetensors +3 -0
  42. model-00040-of-000163.safetensors +3 -0
  43. model-00041-of-000163.safetensors +3 -0
  44. model-00042-of-000163.safetensors +3 -0
  45. model-00043-of-000163.safetensors +3 -0
  46. model-00044-of-000163.safetensors +3 -0
  47. model-00045-of-000163.safetensors +3 -0
  48. model-00046-of-000163.safetensors +3 -0
  49. model-00047-of-000163.safetensors +3 -0
  50. model-00048-of-000163.safetensors +3 -0
chat_template.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if not add_generation_prompt is defined -%}
2
+ {%- set add_generation_prompt = false -%}
3
+ {%- endif -%}
4
+
5
+ {% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='', is_first_sp=true, is_last_user=false) %}
6
+ {%- for message in messages %}
7
+ {%- if message['role'] == 'system' %}
8
+ {%- if ns.is_first_sp %}
9
+ {% set ns.system_prompt = ns.system_prompt + message['content'] %}
10
+ {% set ns.is_first_sp = false %}
11
+ {%- else %}
12
+ {% set ns.system_prompt = ns.system_prompt + '\n\n' + message['content'] %}
13
+ {%- endif %}
14
+ {%- endif %}
15
+ {%- endfor -%}
16
+
17
+ {# --- Append tool descriptions if tools are defined --- #}
18
+ {% if tools is defined and tools is not none %}
19
+ {% set tool_ns = namespace(text='You are a helpful assistant with tool calling capabilities. '
20
+ 'When a tool call is needed, you MUST use the following format to issue the call:\n'
21
+ '<|tool▁calls▁begin|><|tool▁call▁begin|>function<|tool▁sep|>FUNCTION_NAME\n'
22
+ '```json\n{"param1": "value1", "param2": "value2"}\n```<|tool▁call▁end|><|tool▁calls▁end|>\n\n'
23
+ 'Make sure the JSON is valid.'
24
+ '## Tools\n\n### Function\n\nYou have the following functions available:\n\n') %}
25
+ {% for tool in tools %}
26
+ {% set tool_ns.text = tool_ns.text + '\n```json\n' + (tool | tojson) + '\n```\n' %}
27
+ {% endfor %}
28
+ {% set ns.system_prompt = ns.system_prompt + '\n\n' + tool_ns.text %}
29
+ {% endif %}
30
+
31
+ {{- bos_token -}}{{- ns.system_prompt -}}
32
+
33
+ {%- for message in messages %}
34
+ {%- if message['role'] == 'user' %}
35
+ {%- set ns.is_tool = false -%}
36
+ {%- set ns.is_first = false -%}
37
+ {%- set ns.is_last_user = true -%}
38
+ {{'<|User|>' + message['content'] + '<|Assistant|>'}}
39
+ {%- endif %}
40
+ {%- if message['role'] == 'assistant' and message['tool_calls'] is defined and message['tool_calls'] is not none %}
41
+ {%- set ns.is_last_user = false -%}
42
+ {%- if ns.is_tool %}
43
+ {{- '<|tool▁outputs▁end|>'}}
44
+ {%- endif %}
45
+ {%- set ns.is_first = false %}
46
+ {%- set ns.is_tool = false -%}
47
+ {%- set ns.is_output_first = true %}
48
+ {%- for tool in message['tool_calls'] %}
49
+ {%- set formatted_args = tool['function']['arguments'] if tool['function']['arguments'] is string else tool['function']['arguments']|tojson %}
50
+ {%- if not ns.is_first %}
51
+ {%- if message['content'] is none %}
52
+ {{- '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + formatted_args + '\n' + '```' + '<|tool▁call▁end|>'}}
53
+ {%- else %}
54
+ {{- message['content'] + '<|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + formatted_args + '\n' + '```' + '<|tool▁call▁end|>'}}
55
+ {%- endif %}
56
+ {%- set ns.is_first = true -%}
57
+ {%- else %}
58
+ {{- '\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + formatted_args + '\n' + '```' + '<|tool▁call▁end|>'}}
59
+ {%- endif %}
60
+ {%- endfor %}
61
+ {{- '<|tool▁calls▁end|><|end▁of▁sentence|>'}}
62
+ {%- endif %}
63
+ {%- if message['role'] == 'assistant' and (message['tool_calls'] is not defined or message['tool_calls'] is none)%}
64
+ {%- set ns.is_last_user = false -%}
65
+ {%- if ns.is_tool %}
66
+ {{- '<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}
67
+ {%- set ns.is_tool = false -%}
68
+ {%- else %}
69
+ {% set content = message['content'] %}
70
+ {{- content + '<|end▁of▁sentence|>'}}
71
+ {%- endif %}
72
+ {%- endif %}
73
+ {%- if message['role'] == 'tool' %}
74
+ {%- set ns.is_last_user = false -%}
75
+ {%- set ns.is_tool = true -%}
76
+ {%- if ns.is_output_first %}
77
+ {{- 'Use the results below to formulate an answer to the user question unless additional information is needed.' }}
78
+ {{- '<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}
79
+ {%- set ns.is_output_first = false %}
80
+ {%- else %}
81
+ {{- '\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}
82
+ {%- endif %}
83
+ {%- endif %}
84
+ {%- endfor -%}
85
+
86
+ {% if ns.is_tool %}
87
+ {{- '<|tool▁outputs▁end|>'}}
88
+ {% endif %}
89
+ {% if add_generation_prompt and not ns.is_last_user and not ns.is_tool %}
90
+ {{- '<|Assistant|>' -}}
91
+ {% endif %}
config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DeepseekV3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "aux_loss_alpha": 0.001,
8
+ "bos_token_id": 0,
9
+ "eos_token_id": 1,
10
+ "ep_size": 1,
11
+ "first_k_dense_replace": 3,
12
+ "hidden_act": "silu",
13
+ "hidden_size": 7168,
14
+ "initializer_range": 0.02,
15
+ "intermediate_size": 18432,
16
+ "kv_lora_rank": 512,
17
+ "max_position_embeddings": 163840,
18
+ "model_type": "deepseek_v3",
19
+ "moe_intermediate_size": 2048,
20
+ "moe_layer_freq": 1,
21
+ "n_group": 8,
22
+ "n_routed_experts": 256,
23
+ "n_shared_experts": 1,
24
+ "norm_topk_prob": true,
25
+ "num_attention_heads": 128,
26
+ "num_experts_per_tok": 8,
27
+ "num_hidden_layers": 61,
28
+ "num_key_value_heads": 128,
29
+ "num_nextn_predict_layers": 1,
30
+ "pretraining_tp": 1,
31
+ "q_lora_rank": 1536,
32
+ "qk_nope_head_dim": 128,
33
+ "qk_rope_head_dim": 64,
34
+ "quantization_config": {
35
+ "activation_scheme": "dynamic",
36
+ "fmt": "e4m3",
37
+ "quant_method": "fp8",
38
+ "weight_block_size": [
39
+ 128,
40
+ 128
41
+ ]
42
+ },
43
+ "rms_norm_eps": 1e-06,
44
+ "rope_scaling": {
45
+ "beta_fast": 32,
46
+ "beta_slow": 1,
47
+ "factor": 40,
48
+ "mscale": 1.0,
49
+ "mscale_all_dim": 1.0,
50
+ "original_max_position_embeddings": 4096,
51
+ "type": "yarn"
52
+ },
53
+ "rope_theta": 10000,
54
+ "routed_scaling_factor": 2.5,
55
+ "scoring_func": "sigmoid",
56
+ "seq_aux": true,
57
+ "tie_word_embeddings": false,
58
+ "topk_group": 4,
59
+ "topk_method": "noaux_tc",
60
+ "torch_dtype": "bfloat16",
61
+ "transformers_version": "4.57.1",
62
+ "use_cache": true,
63
+ "v_head_dim": 128,
64
+ "vocab_size": 129280
65
+ }
model-00001-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f19659b7a6c1a86937f19d9d88c6b565eeb02fbe6cc1acf378e18bf9561e0287
3
+ size 5234141992
model-00002-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a804b44c5ac3389da1b6dac8268d87e7c212e6693f22ffefa371e5f2a1df012a
3
+ size 4302381728
model-00003-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:299320cae3b580caf307f4a73967fe673ef8bfc40031c35bd2ffee8a7e7b17b7
3
+ size 4302382136
model-00004-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f276f72b1da290d6bc153c155abd949909f72d6cf746109ae59fa9915eac12af
3
+ size 4302347768
model-00005-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e85e8cf9a2b9bdfc0471d9114fcf0170859e846c8d754b27814f4e214a71bd1
3
+ size 4302381912
model-00006-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e91d33e584ea09abe325c9362ac7a3db1ca6a59f96e9f1b135a818a045a0444f
3
+ size 4372096432
model-00007-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d49c2e21c4b83443873bdc40359bff17bc7a23301273e53fa7031feee618ff3e
3
+ size 4306052768
model-00008-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac59c7ca8ae30fa0075e290bc2b1b86f831af072046a7d80c80bff1fd952e84d
3
+ size 4302382120
model-00009-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12cde10c10ef63d25cf8c41a8598600eb0681220a2c19bbc0bb327e32bc254aa
3
+ size 4302347960
model-00010-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5fadceae8522ecfdcf6c535e14f8cf0d15f18073297efcfcb22baad6c345fa2
3
+ size 4302381720
model-00011-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc1d27d2b1494c6eefcc264328caa425f8da2399d6630440d8d5ca6f0d44416c
3
+ size 4302382136
model-00012-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f52d7c6bfe1bdc273694f5f0f57650d122ee808b37e79078754da71a89a41687
3
+ size 1321579568
model-00013-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec12ec622f7ef7aa876a42a4e48d80172c2d2d6d0b1c3a1de32f1e3ac214091e
3
+ size 4302318704
model-00014-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4582689adaaad9664f069b06f711f52a8e18771b6a790766d600fd9373e7ad39
3
+ size 4302382088
model-00015-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2adadb0325377457a8a0ccefe5aa6b1dd9769df39c1a05c3ee8731c9413b305a
3
+ size 4302347992
model-00016-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8963a67ca7ee4aaf51e415c97c6bf7047edd8a71443b15991fd0aa440391f142
3
+ size 4302381688
model-00017-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff6fa95efaa319a6bc8e00da5974b3c297f4abc9ef400b3f4765b6e52788608a
3
+ size 4302382136
model-00018-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70eb0705fe4167ebbf1240089bbbb4ac5549c3495e70b212cf29583b76085498
3
+ size 4302347800
model-00019-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea7c4f285f3df5c3ba6a787a1adc9c8e385b5343a03df6d7df530279efebd7cd
3
+ size 4302381880
model-00020-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9212c79d0084dd81e7791c177557129b0a33769e60365ed86766eb27d471b360
3
+ size 4302382136
model-00021-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89ba3e481133dfa92a991522ee1da50ed5b79743cbe61139913707402b51e81a
3
+ size 4302348168
model-00022-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c30f8cd47d592d9e6ec6a80397de015605fe47e21eb4f51f05596baa603156d
3
+ size 4302382664
model-00023-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:413e45a65d6e76a789bbf2f1d448d08e1220710fb141087012106266124ac25e
3
+ size 4302348576
model-00024-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2ae0b656a4585e86b1ac420db1d0972d4aea4a52b638e69ec5ebb265cbee12c
3
+ size 4302382264
model-00025-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63a771ee5a04de66b683c6d45118ae59f4d0fc77abbf6ed1be4ccb0a7a35c1fd
3
+ size 4302382720
model-00026-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e420a03202f2553b439cf5f357276325d4218d85bed1332bce3769fcbe6f9c5
3
+ size 4302348392
model-00027-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7ffeff7662775ba7497369e4344521b5f1696dc3ea593a279850600e2b67c84
3
+ size 4302382448
model-00028-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e405955ecc3c3a56776629ea55a7a31b49bd31bc190dbbb43e526f2038769ff5
3
+ size 4302382720
model-00029-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79cc8761d14b6cc7fea00613ed35fb0dda47c409248e080e36692f371e05b991
3
+ size 4302348200
model-00030-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bbb117dfb0e9bb7a74a0a488ccd5e234b7403f7f08593b1b948af07a2dcc498
3
+ size 4302382640
model-00031-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83bf552913f63ca2579761162fd9a5a31db58ed0d68b331af55fe1f7ac1404db
3
+ size 4302348600
model-00032-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d28872554fdd36f461ff0aad745b370faf96c3a433d5e6888440cf8f50c7468c
3
+ size 4302382248
model-00033-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1c54b191a962ca6e8b1fc16d7ba11793c5af32b88f1595c7425c835992de141
3
+ size 4302382720
model-00034-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:706b00136ac4a12becfbd34a4c6b2e2c84bbeb44cd1a98ce109587251ccf9e1d
3
+ size 1747412864
model-00035-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a85843407678f9811f56b48c5adf86677ddcb366fb8e7d5731b0da6bd9f7258c
3
+ size 4302319280
model-00036-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3432985323d9c9c068621de200bce2047f1e6f648c809d8909d026af34e77ab
3
+ size 4302382672
model-00037-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed1f382a65746a0ad186df222cd8cd21b6aa914a0de8eccc77656af3d8e37ec8
3
+ size 4302348568
model-00038-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a8e9b0eabce6b7382641ea629350fba68cb2dbc8ca9388b4e28bdf5048c12b3
3
+ size 4302382280
model-00039-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6712a37ee0f7c640dc27b263d708275589975ddc7909fd3103653d3fdee5830
3
+ size 4302382720
model-00040-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85fc58e562ba7eadaf6618d381c135f9f35bfd444512bf65892ebc58adc38a29
3
+ size 4302348376
model-00041-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:429316ed86cc8282cd662e0a66490a27ce2e007c36f5cdbef9f81724c5741378
3
+ size 4302382464
model-00042-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56622f2bad1b7117978ebc1c685d418191a5a85032493d579d2f15b450818d36
3
+ size 4302382720
model-00043-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:281e52440bd6306ca2e7e0fe7396fa713a68f9ff7b3321fbcf9e243ac13fb5ef
3
+ size 4302348184
model-00044-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76067fab026393e35403b85b09b09790e3fc089c4077dc337f5445c57681c091
3
+ size 4302382664
model-00045-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1936bc9e4aa70b339b84348f31b9cbf996690421f1de7359dbdaa8f6517e21a7
3
+ size 4302348576
model-00046-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a273270cc7f32c7a95010748d8c1f808d933198d3cefdef1da43a24ee91e9e1a
3
+ size 4302382264
model-00047-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71a078a594bcae2ed1000f14f6c28a284a2c788f753fa0a56d8a9f25f0bbe34e
3
+ size 4302382720
model-00048-of-000163.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:870e41c61b25555c8af229e2b1d3e1e20bd56a3a52f74147355d0d7f2e26140b
3
+ size 4302348392