TOTORONG commited on
Commit
857956d
·
verified ·
1 Parent(s): 5ab50c4

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. .gitattributes +1 -0
  2. chat_template.jinja +86 -0
  3. config.json +147 -0
  4. model.safetensors-00001-of-00094.safetensors +3 -0
  5. model.safetensors-00002-of-00094.safetensors +3 -0
  6. model.safetensors-00003-of-00094.safetensors +3 -0
  7. model.safetensors-00004-of-00094.safetensors +3 -0
  8. model.safetensors-00005-of-00094.safetensors +3 -0
  9. model.safetensors-00006-of-00094.safetensors +3 -0
  10. model.safetensors-00007-of-00094.safetensors +3 -0
  11. model.safetensors-00008-of-00094.safetensors +3 -0
  12. model.safetensors-00009-of-00094.safetensors +3 -0
  13. model.safetensors-00010-of-00094.safetensors +3 -0
  14. model.safetensors-00011-of-00094.safetensors +3 -0
  15. model.safetensors-00012-of-00094.safetensors +3 -0
  16. model.safetensors-00013-of-00094.safetensors +3 -0
  17. model.safetensors-00014-of-00094.safetensors +3 -0
  18. model.safetensors-00015-of-00094.safetensors +3 -0
  19. model.safetensors-00016-of-00094.safetensors +3 -0
  20. model.safetensors-00017-of-00094.safetensors +3 -0
  21. model.safetensors-00018-of-00094.safetensors +3 -0
  22. model.safetensors-00019-of-00094.safetensors +3 -0
  23. model.safetensors-00020-of-00094.safetensors +3 -0
  24. model.safetensors-00021-of-00094.safetensors +3 -0
  25. model.safetensors-00022-of-00094.safetensors +3 -0
  26. model.safetensors-00023-of-00094.safetensors +3 -0
  27. model.safetensors-00024-of-00094.safetensors +3 -0
  28. model.safetensors-00025-of-00094.safetensors +3 -0
  29. model.safetensors-00026-of-00094.safetensors +3 -0
  30. model.safetensors-00027-of-00094.safetensors +3 -0
  31. model.safetensors-00028-of-00094.safetensors +3 -0
  32. model.safetensors-00029-of-00094.safetensors +3 -0
  33. model.safetensors-00030-of-00094.safetensors +3 -0
  34. model.safetensors-00031-of-00094.safetensors +3 -0
  35. model.safetensors-00032-of-00094.safetensors +3 -0
  36. model.safetensors-00033-of-00094.safetensors +3 -0
  37. model.safetensors-00034-of-00094.safetensors +3 -0
  38. model.safetensors-00035-of-00094.safetensors +3 -0
  39. model.safetensors-00036-of-00094.safetensors +3 -0
  40. model.safetensors-00037-of-00094.safetensors +3 -0
  41. model.safetensors-00038-of-00094.safetensors +3 -0
  42. model.safetensors-00039-of-00094.safetensors +3 -0
  43. model.safetensors-00040-of-00094.safetensors +3 -0
  44. model.safetensors-00041-of-00094.safetensors +3 -0
  45. model.safetensors-00042-of-00094.safetensors +3 -0
  46. model.safetensors-00043-of-00094.safetensors +3 -0
  47. model.safetensors-00044-of-00094.safetensors +3 -0
  48. model.safetensors-00045-of-00094.safetensors +3 -0
  49. model.safetensors-00046-of-00094.safetensors +3 -0
  50. model.safetensors-00047-of-00094.safetensors +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if reasoning_content %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3_5MoeForConditionalGeneration"
4
+ ],
5
+ "bos_token_id": null,
6
+ "torch_dtype": "bfloat16",
7
+ "eos_token_id": 248046,
8
+ "image_token_id": 248056,
9
+ "model_type": "qwen3_5_moe",
10
+ "pad_token_id": 248055,
11
+ "text_config": {
12
+ "attention_bias": false,
13
+ "attention_dropout": 0.0,
14
+ "attn_output_gate": true,
15
+ "bos_token_id": null,
16
+ "torch_dtype": "bfloat16",
17
+ "eos_token_id": 248044,
18
+ "full_attention_interval": 4,
19
+ "head_dim": 256,
20
+ "hidden_act": "silu",
21
+ "hidden_size": 4096,
22
+ "initializer_range": 0.02,
23
+ "layer_types": [
24
+ "linear_attention",
25
+ "linear_attention",
26
+ "linear_attention",
27
+ "full_attention",
28
+ "linear_attention",
29
+ "linear_attention",
30
+ "linear_attention",
31
+ "full_attention",
32
+ "linear_attention",
33
+ "linear_attention",
34
+ "linear_attention",
35
+ "full_attention",
36
+ "linear_attention",
37
+ "linear_attention",
38
+ "linear_attention",
39
+ "full_attention",
40
+ "linear_attention",
41
+ "linear_attention",
42
+ "linear_attention",
43
+ "full_attention",
44
+ "linear_attention",
45
+ "linear_attention",
46
+ "linear_attention",
47
+ "full_attention",
48
+ "linear_attention",
49
+ "linear_attention",
50
+ "linear_attention",
51
+ "full_attention",
52
+ "linear_attention",
53
+ "linear_attention",
54
+ "linear_attention",
55
+ "full_attention",
56
+ "linear_attention",
57
+ "linear_attention",
58
+ "linear_attention",
59
+ "full_attention",
60
+ "linear_attention",
61
+ "linear_attention",
62
+ "linear_attention",
63
+ "full_attention",
64
+ "linear_attention",
65
+ "linear_attention",
66
+ "linear_attention",
67
+ "full_attention",
68
+ "linear_attention",
69
+ "linear_attention",
70
+ "linear_attention",
71
+ "full_attention",
72
+ "linear_attention",
73
+ "linear_attention",
74
+ "linear_attention",
75
+ "full_attention",
76
+ "linear_attention",
77
+ "linear_attention",
78
+ "linear_attention",
79
+ "full_attention",
80
+ "linear_attention",
81
+ "linear_attention",
82
+ "linear_attention",
83
+ "full_attention"
84
+ ],
85
+ "linear_conv_kernel_dim": 4,
86
+ "linear_key_head_dim": 128,
87
+ "linear_num_key_heads": 16,
88
+ "linear_num_value_heads": 64,
89
+ "linear_value_head_dim": 128,
90
+ "mamba_ssm_dtype": "float32",
91
+ "max_position_embeddings": 262144,
92
+ "mlp_only_layers": [],
93
+ "model_type": "qwen3_5_moe_text",
94
+ "moe_intermediate_size": 1024,
95
+ "mtp_num_hidden_layers": 1,
96
+ "mtp_use_dedicated_embeddings": false,
97
+ "num_attention_heads": 32,
98
+ "num_experts": 512,
99
+ "num_experts_per_tok": 10,
100
+ "num_hidden_layers": 60,
101
+ "num_key_value_heads": 2,
102
+ "output_router_logits": false,
103
+ "pad_token_id": null,
104
+ "partial_rotary_factor": 0.25,
105
+ "rms_norm_eps": 1e-06,
106
+ "rope_parameters": {
107
+ "mrope_interleaved": true,
108
+ "mrope_section": [
109
+ 11,
110
+ 11,
111
+ 10
112
+ ],
113
+ "partial_rotary_factor": 0.25,
114
+ "rope_theta": 10000000,
115
+ "rope_type": "default"
116
+ },
117
+ "router_aux_loss_coef": 0.001,
118
+ "shared_expert_intermediate_size": 1024,
119
+ "tie_word_embeddings": false,
120
+ "use_cache": true,
121
+ "vocab_size": 248320
122
+ },
123
+ "tie_word_embeddings": false,
124
+ "unsloth_fixed": true,
125
+ "unsloth_version": "2026.2.1",
126
+ "use_cache": false,
127
+ "video_token_id": 248057,
128
+ "vision_config": {
129
+ "deepstack_visual_indexes": [],
130
+ "depth": 27,
131
+ "torch_dtype": "bfloat16",
132
+ "hidden_act": "gelu_pytorch_tanh",
133
+ "hidden_size": 1152,
134
+ "in_channels": 3,
135
+ "initializer_range": 0.02,
136
+ "intermediate_size": 4304,
137
+ "model_type": "qwen3_5_moe",
138
+ "num_heads": 16,
139
+ "num_position_embeddings": 2304,
140
+ "out_hidden_size": 4096,
141
+ "patch_size": 16,
142
+ "spatial_merge_size": 2,
143
+ "temporal_patch_size": 2
144
+ },
145
+ "vision_end_token_id": 248054,
146
+ "vision_start_token_id": 248053
147
+ }
model.safetensors-00001-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef3af31ff138d1b4a4bdba1207ae727a8cf04f45e63805bfe0023b81019753d2
3
+ size 8589934736
model.safetensors-00002-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b57b19cbe857cf666625d41d06e8132a3f8c43cc61834f45ada9eca5b15e9d12
3
+ size 8589934736
model.safetensors-00003-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30d5b86b581bfbee831f8fb0bd559f7c51841540c16ccfcb33b2c6e034da9189
3
+ size 8589934736
model.safetensors-00004-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7474662495601919a3a05e996efd43f9d48376e3af968ee16b37b7195713de94
3
+ size 8589934736
model.safetensors-00005-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77d5a0dcfb4bdf9e4c17e36cbea0e9cf2cdf3425e23459d5861349313a294cfb
3
+ size 8589934736
model.safetensors-00006-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:029ea9778e597ec289d42ac8585557b4b9eb34a8280771a0ad05fdb6f4588808
3
+ size 8589934736
model.safetensors-00007-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ea70f2e4f1dceb3ca110474d5e5c9c8358686ff9483766f2c44569c27988291
3
+ size 8589934736
model.safetensors-00008-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef7d13b2a76bef45e53c91d333946db077c220a03f4cddb554967536635d2b93
3
+ size 8589934736
model.safetensors-00009-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99275054b8efa27b0edce1c558bf574fdf9710901a1f26ced05e3e66f6ee0bd7
3
+ size 8589934736
model.safetensors-00010-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7901ad36e1a8df569acc5fcffb304bc052f36fa0922c77c991aa2562d0105c36
3
+ size 8589934736
model.safetensors-00011-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de37420e3d78c30df0cc3f3a5f8b1b7a6ce7dc387715c20f429d4e74a23da71
3
+ size 8589934736
model.safetensors-00012-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df24d49b01c11c2c2b935bb0221ed5f0c31f1efbb5a3499e2f1d0d257c6bbc5a
3
+ size 8589934736
model.safetensors-00013-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4050f0e009ce2555a586a62c89d45767cd1f248b51365ad5cdc28bc0c8c48324
3
+ size 8589934736
model.safetensors-00014-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fbb1559e1b960c908ee74df7d925c54a46f7f76d914b3b79eb43e5b68a17f47
3
+ size 8589934736
model.safetensors-00015-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:893021b612b249746c1014fd0c22f571ade88f5deb14ffdc2210329598a68ed6
3
+ size 8589934736
model.safetensors-00016-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0106bb289e1a16e7aa1329376e866592c7d61af53b7c11a472b38fba50a7fb64
3
+ size 8589934736
model.safetensors-00017-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ddb14834a14278ec9d3edb6a769cabd67b0318cc92dd4daf6ffc9fa090522e3
3
+ size 8589934736
model.safetensors-00018-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9d42bce8cf3a69b845e1298236482a59763813a5f37a345b01a66c94fb085e5
3
+ size 8589934736
model.safetensors-00019-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aea6f596de60fc7bba9441da6c31b961f06edd3a23638e67c186683ee0627e94
3
+ size 8589934736
model.safetensors-00020-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e078c060b17934cd91dec1d90a8b88eef3edf6c96c8637705caf94d39053cfcc
3
+ size 8589934736
model.safetensors-00021-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b294edfa9256f16c84ea7b22aeab8e266d80ebced07341735b9cca4055c0a40
3
+ size 8589934736
model.safetensors-00022-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f22caa1430d545017ed596ab399f92a66c40cddca31bba0d2a86e6b3b4c4c4d4
3
+ size 8589934736
model.safetensors-00023-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aff917f1549ce6960c11f9486fa9c139c5bd95f96b106f89f7e08cbe3a9bfd63
3
+ size 8589934736
model.safetensors-00024-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f22f29cbdb33447a10cccbad1a069705e99c3fd7c66d2a1d6cc019d195a97465
3
+ size 8589934736
model.safetensors-00025-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4495e64341b298bb5f04c36f0c4ce200a4d2f60d1c4cf8d5befaa60a89720d81
3
+ size 8589934736
model.safetensors-00026-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bfda686c8e4b38bb325e7d41fb1f51ef37382f87b18619bbea93d7d18f83eae
3
+ size 8589934736
model.safetensors-00027-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2bbe774d86bf517e948d5350d984952403500a840791384f047058f811b77c7
3
+ size 8589934736
model.safetensors-00028-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc5224f3d310356962d13cdf0ab6bd4524aea1178b7f72295081b4e83fea89e4
3
+ size 8589934736
model.safetensors-00029-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:830a685a5ba653da5f456e7750987615b23310984f1dcbe80a9356954bfd0f93
3
+ size 8589934736
model.safetensors-00030-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:740234757240e6e1a50d3c842a929c4ba98d73ada9b10a5ab8409bd3caa92a69
3
+ size 8589934736
model.safetensors-00031-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e20add467014b484f3447a4d441d6b4920301b881a9329839b08b1491841eecc
3
+ size 8589934736
model.safetensors-00032-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17c4e028a5b55553e5d3313f6aff158e3c075f41184f5c35f470f01b69229ce5
3
+ size 8589934736
model.safetensors-00033-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20c5c321e6c87154d673d0169c94ce57c5498ebd06d42ee80be52d785923a8f0
3
+ size 8589934736
model.safetensors-00034-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75e7d240200e82f9680968db70d85770422f87ff5632ad21e58aa9fa057f90cc
3
+ size 8589934736
model.safetensors-00035-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d72f01171636e891ab87e3466a10b447bd1b42d8f008859dc897cd2d089a5748
3
+ size 8589934736
model.safetensors-00036-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cbce89cb5824105c2b6c97b5e9d3ef8e30d5aa93278c05d497413891ca850f0
3
+ size 8589934736
model.safetensors-00037-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:645592a274308e7671a1bb8870f13769e38eafcc010bfa54f65c1f6d4d5d1ca1
3
+ size 8589934736
model.safetensors-00038-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c253a56421c58daa85e8775901c43824b46e8143ba0dd0e938e2a7e6c0720115
3
+ size 8589934736
model.safetensors-00039-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33656b5ddbe6dd702ffa4811acc118955aff4d68f08a0e4a7e1c330b1843dd64
3
+ size 8589934736
model.safetensors-00040-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53c2e8a4eb74e14c86396059b3f20f7560c48244dcab4c972a9074ceee76889c
3
+ size 8589934736
model.safetensors-00041-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5bbcf8e2b785daee4557cb8d3b47349a921c0911f3364b69a089470b6309ba6
3
+ size 8589934736
model.safetensors-00042-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d208d22e719e3e05ead6a700ea706efea9d5a1bba89da3024d1f4c41b6d3776e
3
+ size 8589934736
model.safetensors-00043-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b418deab92a9d6c2198e2535b034913368b00b5e2846f14d0accca78ee20f585
3
+ size 8589934736
model.safetensors-00044-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fe93007beb18e68392f3fdb2df725d5224bc3e7147edb6ac7cceec4383f4fa8
3
+ size 8589934736
model.safetensors-00045-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5708aff99f2ff608fd059c8a8d1661df415a74fd8ff1c543173fa14689b19957
3
+ size 8589934736
model.safetensors-00046-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e3cb804a0a09fb3d763cb350ca679d40b13f3231ba0c3fa8f219173635c910b
3
+ size 8589934736
model.safetensors-00047-of-00094.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:429868b1c18e7e21704787d6a37f8d8c71ce50132825e00c35f7b9e7373b503d
3
+ size 8589934736