Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +1 -0
- chat_template.json +3 -0
- config.json +184 -0
- generation_config.json +13 -0
- model-00001-of-00050.safetensors +3 -0
- model-00002-of-00050.safetensors +3 -0
- model-00003-of-00050.safetensors +3 -0
- model-00004-of-00050.safetensors +3 -0
- model-00005-of-00050.safetensors +3 -0
- model-00006-of-00050.safetensors +3 -0
- model-00007-of-00050.safetensors +3 -0
- model-00008-of-00050.safetensors +3 -0
- model-00009-of-00050.safetensors +3 -0
- model-00010-of-00050.safetensors +3 -0
- model-00011-of-00050.safetensors +3 -0
- model-00012-of-00050.safetensors +3 -0
- model-00013-of-00050.safetensors +3 -0
- model-00014-of-00050.safetensors +3 -0
- model-00015-of-00050.safetensors +3 -0
- model-00016-of-00050.safetensors +3 -0
- model-00017-of-00050.safetensors +3 -0
- model-00018-of-00050.safetensors +3 -0
- model-00019-of-00050.safetensors +3 -0
- model-00020-of-00050.safetensors +3 -0
- model-00021-of-00050.safetensors +3 -0
- model-00022-of-00050.safetensors +3 -0
- model-00023-of-00050.safetensors +3 -0
- model-00024-of-00050.safetensors +3 -0
- model-00025-of-00050.safetensors +3 -0
- model-00026-of-00050.safetensors +3 -0
- model-00027-of-00050.safetensors +3 -0
- model-00028-of-00050.safetensors +3 -0
- model-00029-of-00050.safetensors +3 -0
- model-00030-of-00050.safetensors +3 -0
- model-00031-of-00050.safetensors +3 -0
- model-00032-of-00050.safetensors +3 -0
- model-00033-of-00050.safetensors +3 -0
- model-00034-of-00050.safetensors +3 -0
- model-00035-of-00050.safetensors +3 -0
- model-00036-of-00050.safetensors +3 -0
- model-00037-of-00050.safetensors +3 -0
- model-00038-of-00050.safetensors +3 -0
- model-00039-of-00050.safetensors +3 -0
- model-00040-of-00050.safetensors +3 -0
- model-00041-of-00050.safetensors +3 -0
- model-00042-of-00050.safetensors +3 -0
- model-00043-of-00050.safetensors +3 -0
- model-00044-of-00050.safetensors +3 -0
- model-00045-of-00050.safetensors +3 -0
- model-00046-of-00050.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.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chat_template": "{{- bos_token }}\n{%- if custom_tools is defined %}\n {%- set tools = custom_tools %}\n{%- endif %}\n{%- if not tools_in_user_message is defined %}\n {%- set tools_in_user_message = true %}\n{%- endif %}\n{%- if not date_string is defined %}\n {%- if strftime_now is defined %}\n {%- set date_string = strftime_now(\"%d %b %Y\") %}\n {%- else %}\n {%- set date_string = \"26 Jul 2024\" %}\n {%- endif %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = none %}\n{%- endif %}\n\n{#- This block extracts the system message, so we can slot it into the right place. #}\n{%- if messages[0]['role'] == 'system' %} \n {%- if messages[0]['content'] is string %}\n {%- set system_message = messages[0]['content']|trim %}\n {%- else %}\n {#- FIXME: The processor requires an array, always. #}\n {%- set system_message = messages[0]['content'][0]['text']|trim %}\n {%- endif %}\n {%- set messages = messages[1:] %}\n {%- set user_supplied_system_message = true %}\n{%- else %}\n {%- set system_message = \"\" %}\n {%- set user_supplied_system_message = false %}\n{%- endif %}\n\n{#- System message if the user supplied one #}\n{%- if user_supplied_system_message %}\n {{- \"<|header_start|>system<|header_end|>\\n\\n\" }}\n {%- if tools is not none %}\n {{- \"Environment: ipython\\n\" }}\n {%- endif %}\n {%- if tools is not none and not tools_in_user_message %}\n {{- \"You have access to the following functions. To call a function, please respond with JSON for a function call.\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {%- endif %}\n {{- system_message }}\n {{- \"<|eot|>\" }}\n{%- endif %}\n\n{#- Custom tools are passed in a user message with some extra guidance #}\n{%- if tools_in_user_message and not tools is none %}\n {#- Extract the first user message so we can plug it in here #}\n {%- if messages | length != 0 %}\n {%- set first_user_message = messages[0]['content']|trim %}\n {%- set messages = messages[1:] %}\n {%- else %}\n {{- raise_exception(\"Cannot put tools in the first user message when there's no first user message!\") }}\n{%- endif %}\n {{- '<|header_start|>user<|header_end|>\\n\\n' -}}\n {{- \"Given the following functions, please respond with a JSON for a function call \" }}\n {{- \"with its proper arguments that best answers the given prompt.\\n\\n\" }}\n {{- 'Respond in the format {\"name\": function name, \"parameters\": dictionary of argument name and its value}.' }}\n {{- \"Do not use variables.\\n\\n\" }}\n {%- for t in tools %}\n {{- t | tojson(indent=4) }}\n {{- \"\\n\\n\" }}\n {%- endfor %}\n {{- first_user_message + \"<|eot|>\"}}\n{%- endif %}\n\n{%- for message in messages %}\n {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}\n {{- '<|header_start|>' + message['role'] + '<|header_end|>\\n\\n' }}\n {%- if message['content'] is string %}\n {{- message['content'] }}\n {%- else %}\n {%- for content in message['content'] %}\n {%- if content['type'] == 'image' %}\n {{- '<|image|>' }}\n {%- elif content['type'] == 'text' %}\n {{- content['text'] }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- \"<|eot|>\" }}\n {%- elif 'tool_calls' in message and message.tool_calls|length > 0 %}\n {{- '<|header_start|>assistant<|header_end|>\\n\\n' -}}\n {{- '<|python_start|>' }}\n {%- if message['content'] is string %}\n {{- message['content'] }}\n {%- else %}\n {%- for content in message['content'] %}\n {%- if content['type'] == 'image' %}\n {{- '<|image|>' }}\n {%- elif content['type'] == 'text' %}\n {{- content['text'] }}\n {%- endif %}\n {%- endfor %}\n {%- endif %}\n {{- '<|python_end|>' }}\n {%- for tool_call in message.tool_calls %}\n {{- '{\"name\": \"' + tool_call.function.name + '\", ' }}\n {{- '\"parameters\": ' }}\n {{- tool_call.function.arguments | tojson }}\n {{- \"}\" }}\n {%- endfor %}\n {{- \"<|eot|>\" }}\n {%- elif message.role == \"tool\" or message.role == \"ipython\" %}\n {{- \"<|header_start|>ipython<|header_end|>\\n\\n\" }}\n {%- if message.content is mapping or message.content is iterable %}\n {{- message.content | tojson }}\n {%- else %}\n {{- message.content }}\n {%- endif %}\n {{- \"<|eot|>\" }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|header_start|>assistant<|header_end|>\\n\\n' }}\n{%- endif %}\n"
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Llama4ForConditionalGeneration"
|
4 |
+
],
|
5 |
+
"boi_token_index": 200080,
|
6 |
+
"eoi_token_index": 200081,
|
7 |
+
"image_token_index": 200092,
|
8 |
+
"model_type": "llama4",
|
9 |
+
"text_config": {
|
10 |
+
"_attn_implementation_autoset": true,
|
11 |
+
"attention_bias": false,
|
12 |
+
"attention_chunk_size": 8192,
|
13 |
+
"attention_dropout": 0.0,
|
14 |
+
"attn_scale": 0.1,
|
15 |
+
"attn_temperature_tuning": 4,
|
16 |
+
"bos_token_id": 200000,
|
17 |
+
"eos_token_id": [
|
18 |
+
200001,
|
19 |
+
200007,
|
20 |
+
200008
|
21 |
+
],
|
22 |
+
"floor_scale": 8192,
|
23 |
+
"for_llm_compressor": false,
|
24 |
+
"head_dim": 128,
|
25 |
+
"hidden_act": "silu",
|
26 |
+
"hidden_size": 5120,
|
27 |
+
"initializer_range": 0.02,
|
28 |
+
"interleave_moe_layer_step": 1,
|
29 |
+
"intermediate_size": 8192,
|
30 |
+
"intermediate_size_mlp": 16384,
|
31 |
+
"max_position_embeddings": 10485760,
|
32 |
+
"model_type": "llama4_text",
|
33 |
+
"moe_layers": [
|
34 |
+
0,
|
35 |
+
1,
|
36 |
+
2,
|
37 |
+
3,
|
38 |
+
4,
|
39 |
+
5,
|
40 |
+
6,
|
41 |
+
7,
|
42 |
+
8,
|
43 |
+
9,
|
44 |
+
10,
|
45 |
+
11,
|
46 |
+
12,
|
47 |
+
13,
|
48 |
+
14,
|
49 |
+
15,
|
50 |
+
16,
|
51 |
+
17,
|
52 |
+
18,
|
53 |
+
19,
|
54 |
+
20,
|
55 |
+
21,
|
56 |
+
22,
|
57 |
+
23,
|
58 |
+
24,
|
59 |
+
25,
|
60 |
+
26,
|
61 |
+
27,
|
62 |
+
28,
|
63 |
+
29,
|
64 |
+
30,
|
65 |
+
31,
|
66 |
+
32,
|
67 |
+
33,
|
68 |
+
34,
|
69 |
+
35,
|
70 |
+
36,
|
71 |
+
37,
|
72 |
+
38,
|
73 |
+
39,
|
74 |
+
40,
|
75 |
+
41,
|
76 |
+
42,
|
77 |
+
43,
|
78 |
+
44,
|
79 |
+
45,
|
80 |
+
46,
|
81 |
+
47
|
82 |
+
],
|
83 |
+
"no_rope_layers": [
|
84 |
+
1,
|
85 |
+
1,
|
86 |
+
1,
|
87 |
+
0,
|
88 |
+
1,
|
89 |
+
1,
|
90 |
+
1,
|
91 |
+
0,
|
92 |
+
1,
|
93 |
+
1,
|
94 |
+
1,
|
95 |
+
0,
|
96 |
+
1,
|
97 |
+
1,
|
98 |
+
1,
|
99 |
+
0,
|
100 |
+
1,
|
101 |
+
1,
|
102 |
+
1,
|
103 |
+
0,
|
104 |
+
1,
|
105 |
+
1,
|
106 |
+
1,
|
107 |
+
0,
|
108 |
+
1,
|
109 |
+
1,
|
110 |
+
1,
|
111 |
+
0,
|
112 |
+
1,
|
113 |
+
1,
|
114 |
+
1,
|
115 |
+
0,
|
116 |
+
1,
|
117 |
+
1,
|
118 |
+
1,
|
119 |
+
0,
|
120 |
+
1,
|
121 |
+
1,
|
122 |
+
1,
|
123 |
+
0,
|
124 |
+
1,
|
125 |
+
1,
|
126 |
+
1,
|
127 |
+
0,
|
128 |
+
1,
|
129 |
+
1,
|
130 |
+
1,
|
131 |
+
0
|
132 |
+
],
|
133 |
+
"num_attention_heads": 40,
|
134 |
+
"num_experts_per_tok": 1,
|
135 |
+
"num_hidden_layers": 48,
|
136 |
+
"num_key_value_heads": 8,
|
137 |
+
"num_local_experts": 16,
|
138 |
+
"output_router_logits": false,
|
139 |
+
"pad_token_id": 200018,
|
140 |
+
"rms_norm_eps": 1e-05,
|
141 |
+
"rope_scaling": {
|
142 |
+
"factor": 8.0,
|
143 |
+
"high_freq_factor": 4.0,
|
144 |
+
"low_freq_factor": 1.0,
|
145 |
+
"original_max_position_embeddings": 8192,
|
146 |
+
"rope_type": "llama3"
|
147 |
+
},
|
148 |
+
"rope_theta": 500000.0,
|
149 |
+
"router_aux_loss_coef": 0.001,
|
150 |
+
"router_jitter_noise": 0.0,
|
151 |
+
"torch_dtype": "bfloat16",
|
152 |
+
"use_cache": true,
|
153 |
+
"use_qk_norm": true,
|
154 |
+
"vocab_size": 202048
|
155 |
+
},
|
156 |
+
"tie_word_embeddings": false,
|
157 |
+
"torch_dtype": "bfloat16",
|
158 |
+
"transformers_version": "4.51.0",
|
159 |
+
"vision_config": {
|
160 |
+
"_attn_implementation_autoset": true,
|
161 |
+
"attention_dropout": 0.0,
|
162 |
+
"hidden_act": "gelu",
|
163 |
+
"hidden_size": 1408,
|
164 |
+
"image_size": 336,
|
165 |
+
"initializer_range": 0.02,
|
166 |
+
"intermediate_size": 5632,
|
167 |
+
"model_type": "llama4_vision_model",
|
168 |
+
"multi_modal_projector_bias": false,
|
169 |
+
"norm_eps": 1e-05,
|
170 |
+
"num_attention_heads": 16,
|
171 |
+
"num_channels": 3,
|
172 |
+
"num_hidden_layers": 34,
|
173 |
+
"patch_size": 14,
|
174 |
+
"pixel_shuffle_ratio": 0.5,
|
175 |
+
"projector_dropout": 0.0,
|
176 |
+
"projector_input_dim": 4096,
|
177 |
+
"projector_output_dim": 4096,
|
178 |
+
"rope_theta": 10000,
|
179 |
+
"torch_dtype": "bfloat16",
|
180 |
+
"vision_feature_layer": -1,
|
181 |
+
"vision_feature_select_strategy": "default",
|
182 |
+
"vision_output_dim": 4096
|
183 |
+
}
|
184 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 200000,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": [
|
5 |
+
200001,
|
6 |
+
200007,
|
7 |
+
200008
|
8 |
+
],
|
9 |
+
"pad_token_id": 200018,
|
10 |
+
"temperature": 0.6,
|
11 |
+
"top_p": 0.9,
|
12 |
+
"transformers_version": "4.51.0"
|
13 |
+
}
|
model-00001-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bbf828156579c47920e57b6f0ab756affd19b37e82141661984f8b3969c07d21
|
3 |
+
size 3938735392
|
model-00002-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1620ca141f702a2e68ef37633d4729d35cce2260bbd36afd3e1c86993e7bd1c7
|
3 |
+
size 4404205232
|
model-00003-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bd3989a0520b2ec9a90ceb088a9fb5674ae2cda0cd542bf612f2c973da2491e
|
3 |
+
size 4404205232
|
model-00004-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab90e5bf7d202046aa601d1c00ef76983e5f602e04fe0e6eca05357b6f236974
|
3 |
+
size 4404205232
|
model-00005-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:643b34dd6e4b8baf81cce268b2226144cef7e8959e4ba6c5238a0d519b94ab51
|
3 |
+
size 4404205232
|
model-00006-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06f9142c2b67d889dc0521d949f144b40b336bb9776e3465549ab2c55355c608
|
3 |
+
size 4404205232
|
model-00007-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7f64071b2de9eb18fd3a919dc29c38fdf46804a17b709fbba2a5dcd65a149be
|
3 |
+
size 4404205232
|
model-00008-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6c086781091a3993921dfd483e19fdb5c8ce4375036858d090775ce754662786
|
3 |
+
size 4404205232
|
model-00009-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5d0ae4554ce11ae48d6cab356e475289b8b37084c9031f84d0a35e585425a3b0
|
3 |
+
size 4404205232
|
model-00010-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1eadd6cdf16d6a94b524b86247be1b85666b720fb1e3c6ea7a69c664c52b7853
|
3 |
+
size 4404205232
|
model-00011-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6029da11492f4a2a39696b1ca54fddb12b163496ae9fd069a388086372cb5053
|
3 |
+
size 4404205224
|
model-00012-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ea25383e6a2b3535d44ac895c29c55fb0bd3cfbcdf50de1cb897e6c8acc39943
|
3 |
+
size 4404205240
|
model-00013-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd805fea2e9d91719d1e98590789b34a627326e923a48d31e29708336176a103
|
3 |
+
size 4404205240
|
model-00014-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ca29a337d0c37484248855d8b360e044122a07c4b87cf7a2cf742e2deed4b42
|
3 |
+
size 4404205240
|
model-00015-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7a77be93a61e20a2776379c1eed42af70790b6db6c973f44894bb116232f2e7a
|
3 |
+
size 4404205240
|
model-00016-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06f2c24f9f9786a2219d39679c2887812d299ae5b95746425d87816ecb6ac31a
|
3 |
+
size 4404205240
|
model-00017-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bdaad6fcdf15eefa845d7e5894cff93252df33b3555fba1878f6f5e282bf17c3
|
3 |
+
size 4404205240
|
model-00018-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df3d569aa8d29b947c4fff4c159767a922b4138e06f8830baa24be1210c6819d
|
3 |
+
size 4404205240
|
model-00019-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca6ff34ba809cd91bf2cd13927c8a21aefe83a41d17e47947b90a55551a3aff2
|
3 |
+
size 4404205240
|
model-00020-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a128fb2b9337b4a6d17179ea26a7946f7fa7711954eb959a87ecab01c77599f9
|
3 |
+
size 4404205240
|
model-00021-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d375d9f0dda615b5b5f73c0ef596dc6adaec35608c744cdc91dbf31767ab8f38
|
3 |
+
size 4404205240
|
model-00022-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:71f5e1260dd3836d92e21ca01b3398b8ee2e1a5ad282c1a6f1c1675f6dfe2ac4
|
3 |
+
size 4404205240
|
model-00023-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f827e303340cbea2f6508249cde0142b9eb25bb62e0357c0ee210edeea149a71
|
3 |
+
size 4404205240
|
model-00024-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4320ed5a8c10b4cae730673d4b47eb1c2ee3b0242531b632a910d0425319372f
|
3 |
+
size 4404205240
|
model-00025-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:527d5e68d2a657dd9e0299ac8a037ee7501721ca8dfdfc188f69a2017856ad1d
|
3 |
+
size 4404205240
|
model-00026-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca932b15ff1afeafc8e86cdd79c3bd04041c3a1d9bfcd4355f04dc1e7a78a1c7
|
3 |
+
size 4404205240
|
model-00027-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be126c3c8b97528c72367b1642a33f7aafee7687d05b8f77448a7bf97df84e71
|
3 |
+
size 4404205240
|
model-00028-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1b881ef8cdf2d0fe96d3df2b5ca510795aaffdd5f954a12d441264039d12d3e
|
3 |
+
size 4404205240
|
model-00029-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05486b768dfb44a5d7f9a01026198d117cebad9cebf336837caa8e8a1de1c70f
|
3 |
+
size 4404205240
|
model-00030-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a02d69a935e1aa876622784ec22255c08d536c1de6289f84e7cd5aef47317082
|
3 |
+
size 4404205240
|
model-00031-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f5cef3ffcf58552d223aa6c8713a17edd9890960a3048c2d12d3e7fefab49e5d
|
3 |
+
size 4404205240
|
model-00032-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:00d61b63d2c1e2e99cbd448a5d359dc1987bb13df3e7cf9a4b86e9abbecd3566
|
3 |
+
size 4404205240
|
model-00033-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3cb8c1cfd5c0a15ae5327e7148c2ab49cacf98120e73069c63ba6028600facff
|
3 |
+
size 4404205240
|
model-00034-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d1ca2fdc1ab3ce2df5491e5a0d592c93464a9733d33b5588fc0ff83f8cc5ca96
|
3 |
+
size 4404205240
|
model-00035-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:56a6baf7ea2756ed7c5ce67971d2c256964cdcda8ea755ee2438bb9e70dab399
|
3 |
+
size 4404205240
|
model-00036-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa6f53a0c4103b34bef7f3172f964d16fa6e8395ac3c2638c0cf80b9acf8b39e
|
3 |
+
size 4404205240
|
model-00037-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:373007bd9a116d624c1ffc7dc520ba8b51c8e69b9b72cb755470a35da0da304e
|
3 |
+
size 4404205240
|
model-00038-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68900f8238c8eee799d38aaec6e61e5fb1e9f9c97d78684acfc9f2a2118e81de
|
3 |
+
size 4404205240
|
model-00039-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3cac54dbfce32247e7e027741edae820a7ebdc4211274afc8609f23836630ed9
|
3 |
+
size 4404205240
|
model-00040-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d53967a1e20112ffa31b4d0befdb07d2c373ec271a8bafb9afffc11b20b6aa1d
|
3 |
+
size 4404205240
|
model-00041-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ff6c6dd97f02b3123d7800a0aca8751d87bfb8dd4e905d55cd20df92caded5e
|
3 |
+
size 4404205240
|
model-00042-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:814ac2d1c3ba063b6fd80c4887d3da103a2b7715325546a54b00660af334d0dd
|
3 |
+
size 4404205240
|
model-00043-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bcfda8acb51b4cc2463ad874a4dab518eb2d62d7700442ef33811ab84de1928
|
3 |
+
size 4404205240
|
model-00044-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:815daa300d1b95862a3f37cc472d4ec6da9b6ca60046fa91b56f2c781cd6027a
|
3 |
+
size 4404205240
|
model-00045-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6c721f31645101c6960a16167f485174c2846fe3882593671875c90afa61548e
|
3 |
+
size 4404205240
|
model-00046-of-00050.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68f549cbcbd862d30c4508ec0822b9af91468b78828246a6f0f8f5fad15c7750
|
3 |
+
size 4404205240
|