leonardlin commited on
Commit
f904dfc
·
verified ·
1 Parent(s): 5b84904

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 +109 -0
  3. config.json +82 -0
  4. generation_config.json +12 -0
  5. model-00001-of-00086.safetensors +3 -0
  6. model-00002-of-00086.safetensors +3 -0
  7. model-00003-of-00086.safetensors +3 -0
  8. model-00004-of-00086.safetensors +3 -0
  9. model-00005-of-00086.safetensors +3 -0
  10. model-00006-of-00086.safetensors +3 -0
  11. model-00007-of-00086.safetensors +3 -0
  12. model-00008-of-00086.safetensors +3 -0
  13. model-00009-of-00086.safetensors +3 -0
  14. model-00010-of-00086.safetensors +3 -0
  15. model-00011-of-00086.safetensors +3 -0
  16. model-00012-of-00086.safetensors +3 -0
  17. model-00013-of-00086.safetensors +3 -0
  18. model-00014-of-00086.safetensors +3 -0
  19. model-00015-of-00086.safetensors +3 -0
  20. model-00016-of-00086.safetensors +3 -0
  21. model-00017-of-00086.safetensors +3 -0
  22. model-00018-of-00086.safetensors +3 -0
  23. model-00019-of-00086.safetensors +3 -0
  24. model-00020-of-00086.safetensors +3 -0
  25. model-00021-of-00086.safetensors +3 -0
  26. model-00022-of-00086.safetensors +3 -0
  27. model-00023-of-00086.safetensors +3 -0
  28. model-00024-of-00086.safetensors +3 -0
  29. model-00025-of-00086.safetensors +3 -0
  30. model-00026-of-00086.safetensors +3 -0
  31. model-00027-of-00086.safetensors +3 -0
  32. model-00028-of-00086.safetensors +3 -0
  33. model-00029-of-00086.safetensors +3 -0
  34. model-00030-of-00086.safetensors +3 -0
  35. model-00031-of-00086.safetensors +3 -0
  36. model-00032-of-00086.safetensors +3 -0
  37. model-00033-of-00086.safetensors +3 -0
  38. model-00034-of-00086.safetensors +3 -0
  39. model-00035-of-00086.safetensors +3 -0
  40. model-00036-of-00086.safetensors +3 -0
  41. model-00037-of-00086.safetensors +3 -0
  42. model-00038-of-00086.safetensors +3 -0
  43. model-00039-of-00086.safetensors +3 -0
  44. model-00040-of-00086.safetensors +3 -0
  45. model-00041-of-00086.safetensors +3 -0
  46. model-00042-of-00086.safetensors +3 -0
  47. model-00043-of-00086.safetensors +3 -0
  48. model-00044-of-00086.safetensors +3 -0
  49. model-00045-of-00086.safetensors +3 -0
  50. model-00046-of-00086.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,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token }}
2
+ {%- if custom_tools is defined %}
3
+ {%- set tools = custom_tools %}
4
+ {%- endif %}
5
+ {%- if not tools_in_user_message is defined %}
6
+ {%- set tools_in_user_message = true %}
7
+ {%- endif %}
8
+ {%- if not date_string is defined %}
9
+ {%- set date_string = "26 Jul 2024" %}
10
+ {%- endif %}
11
+ {%- if not tools is defined %}
12
+ {%- set tools = none %}
13
+ {%- endif %}
14
+
15
+ {#- This block extracts the system message, so we can slot it into the right place. #}
16
+ {%- if messages[0]['role'] == 'system' %}
17
+ {%- set system_message = messages[0]['content']|trim %}
18
+ {%- set messages = messages[1:] %}
19
+ {%- else %}
20
+ {%- set system_message = "" %}
21
+ {%- endif %}
22
+
23
+ {#- System message + builtin tools #}
24
+ {{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
25
+ {%- if builtin_tools is defined or tools is not none %}
26
+ {{- "Environment: ipython\n" }}
27
+ {%- endif %}
28
+ {%- if builtin_tools is defined %}
29
+ {{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
30
+ {%- endif %}
31
+ {{- "Cutting Knowledge Date: December 2023\n" }}
32
+ {{- "Today Date: " + date_string + "\n\n" }}
33
+ {%- if tools is not none and not tools_in_user_message %}
34
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
35
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
36
+ {{- "Do not use variables.\n\n" }}
37
+ {%- for t in tools %}
38
+ {{- t | tojson(indent=4) }}
39
+ {{- "\n\n" }}
40
+ {%- endfor %}
41
+ {%- endif %}
42
+ {{- system_message }}
43
+ {{- "<|eot_id|>" }}
44
+
45
+ {#- Custom tools are passed in a user message with some extra guidance #}
46
+ {%- if tools_in_user_message and not tools is none %}
47
+ {#- Extract the first user message so we can plug it in here #}
48
+ {%- if messages | length != 0 %}
49
+ {%- set first_user_message = messages[0]['content']|trim %}
50
+ {%- set messages = messages[1:] %}
51
+ {%- else %}
52
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
53
+ {%- endif %}
54
+ {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
55
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
56
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
57
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
58
+ {{- "Do not use variables.\n\n" }}
59
+ {%- for t in tools %}
60
+ {{- t | tojson(indent=4) }}
61
+ {{- "\n\n" }}
62
+ {%- endfor %}
63
+ {{- first_user_message + "<|eot_id|>"}}
64
+ {%- endif %}
65
+
66
+ {%- for message in messages %}
67
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
68
+ {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
69
+ {%- elif 'tool_calls' in message %}
70
+ {%- if not message.tool_calls|length == 1 %}
71
+ {{- raise_exception("This model only supports single tool-calls at once!") }}
72
+ {%- endif %}
73
+ {%- set tool_call = message.tool_calls[0].function %}
74
+ {%- if builtin_tools is defined and tool_call.name in builtin_tools %}
75
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
76
+ {{- "<|python_tag|>" + tool_call.name + ".call(" }}
77
+ {%- for arg_name, arg_val in tool_call.arguments | items %}
78
+ {{- arg_name + '="' + arg_val + '"' }}
79
+ {%- if not loop.last %}
80
+ {{- ", " }}
81
+ {%- endif %}
82
+ {%- endfor %}
83
+ {{- ")" }}
84
+ {%- else %}
85
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
86
+ {{- '{"name": "' + tool_call.name + '", ' }}
87
+ {{- '"parameters": ' }}
88
+ {{- tool_call.arguments | tojson }}
89
+ {{- "}" }}
90
+ {%- endif %}
91
+ {%- if builtin_tools is defined %}
92
+ {#- This means we're in ipython mode #}
93
+ {{- "<|eom_id|>" }}
94
+ {%- else %}
95
+ {{- "<|eot_id|>" }}
96
+ {%- endif %}
97
+ {%- elif message.role == "tool" or message.role == "ipython" %}
98
+ {{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
99
+ {%- if message.content is mapping or message.content is iterable %}
100
+ {{- message.content | tojson }}
101
+ {%- else %}
102
+ {{- message.content }}
103
+ {%- endif %}
104
+ {{- "<|eot_id|>" }}
105
+ {%- endif %}
106
+ {%- endfor %}
107
+ {%- if add_generation_prompt %}
108
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
109
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 128000,
8
+ "eos_token_id": [
9
+ 128001,
10
+ 128008,
11
+ 128009
12
+ ],
13
+ "head_dim": 128,
14
+ "hidden_act": "silu",
15
+ "hidden_size": 16384,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 53248,
18
+ "max_position_embeddings": 131072,
19
+ "mlp_bias": false,
20
+ "model_type": "llama",
21
+ "num_attention_heads": 128,
22
+ "num_hidden_layers": 126,
23
+ "num_key_value_heads": 8,
24
+ "pad_token_id": 128009,
25
+ "pretraining_tp": 1,
26
+ "quantization_config": {
27
+ "config_groups": {
28
+ "group_0": {
29
+ "input_activations": {
30
+ "actorder": null,
31
+ "block_structure": null,
32
+ "dynamic": true,
33
+ "group_size": null,
34
+ "num_bits": 8,
35
+ "observer": null,
36
+ "observer_kwargs": {},
37
+ "strategy": "token",
38
+ "symmetric": true,
39
+ "type": "int"
40
+ },
41
+ "output_activations": null,
42
+ "targets": [
43
+ "Linear"
44
+ ],
45
+ "weights": {
46
+ "actorder": null,
47
+ "block_structure": null,
48
+ "dynamic": false,
49
+ "group_size": null,
50
+ "num_bits": 8,
51
+ "observer": "minmax",
52
+ "observer_kwargs": {},
53
+ "strategy": "channel",
54
+ "symmetric": true,
55
+ "type": "int"
56
+ }
57
+ }
58
+ },
59
+ "format": "int-quantized",
60
+ "global_compression_ratio": null,
61
+ "ignore": [
62
+ "lm_head"
63
+ ],
64
+ "kv_cache_scheme": null,
65
+ "quant_method": "compressed-tensors",
66
+ "quantization_status": "compressed"
67
+ },
68
+ "rms_norm_eps": 1e-05,
69
+ "rope_scaling": {
70
+ "factor": 8.0,
71
+ "high_freq_factor": 4.0,
72
+ "low_freq_factor": 1.0,
73
+ "original_max_position_embeddings": 8192,
74
+ "rope_type": "llama3"
75
+ },
76
+ "rope_theta": 500000.0,
77
+ "tie_word_embeddings": false,
78
+ "torch_dtype": "bfloat16",
79
+ "transformers_version": "4.52.3",
80
+ "use_cache": false,
81
+ "vocab_size": 128256
82
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 128000,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 128001,
6
+ 128008,
7
+ 128009
8
+ ],
9
+ "temperature": 0.6,
10
+ "top_p": 0.9,
11
+ "transformers_version": "4.52.3"
12
+ }
model-00001-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c32de0435cfa577817c38cf6dda2617a126055c6c84e0f3ea0da561683085e6
3
+ size 4773188672
model-00002-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7023bbe0146e98cc8c2da9708b173b17ee7333b4d302bdeca5ea3bba314440c
3
+ size 4933097696
model-00003-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ffc7a0747bbe4676446c104c29a09cf49a8e59430c20e2030f5d38d4202a219
3
+ size 4631063664
model-00004-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbf5a5b4b167ac84390e0cebadd1e11ea3143278a6f9e826414f044ce72911ee
3
+ size 4933097696
model-00005-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6ef0790ed9e5d3c7fd24737f0c15bf276d643207f91a24856924b95e11a7e16
3
+ size 4631063664
model-00006-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83937428d21efa24b0f1a98404af7925193e22c00afdaeae6ecb14cd4dd0f4fd
3
+ size 4933097696
model-00007-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfcfb13be51b8c51d1164802ee7a36e75441111517f0cf9963dec7ed33dba443
3
+ size 4631063664
model-00008-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7899f83b7da401ea89f84c3bc4aa57365cd2ddb4ca1255c34313d405cc302018
3
+ size 4933097712
model-00009-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60ed66b88ebb8d1e0503975dfa83ce853ee7f6415bc03d105f10f4c383b24851
3
+ size 4631063696
model-00010-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0000f1848dc781d67e20b4931a6e9a21271968179a2b3e5eec6d7988efb5f3a0
3
+ size 4933097720
model-00011-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:031ae055eb2fd85bf38825f7e205e7c7f80d4803dd53c3f65e3b7ed22fb791d9
3
+ size 4631063696
model-00012-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66e9ee110b648d87de80e43a3d153f9ada37fddf80cd659ba7be9f28e971b424
3
+ size 4933097720
model-00013-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e39056b74473e11846b96f307ec14e6f2b2d528545f000d38fb2f7a5df6be9d
3
+ size 4631063696
model-00014-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a6edf3d90197f2fd4be8b3689d8d2337a41430cf76a7c678c8c2bfb2247a6c2
3
+ size 4933097720
model-00015-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ec340542c6e2197dc1bc0e61e75da41b3dc4afce6b8283e2b4a91af5c3d22c7
3
+ size 4631063696
model-00016-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7051e51beb70abc633c1284d5b5a1e523eddfa90dd73548dc3e7a0b128a6ae4
3
+ size 4933097720
model-00017-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8af561633fa219db21052a0eccd15732c365929200ff9b84c645a771df4909c2
3
+ size 4631063696
model-00018-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99c96e2f49a8069e32e94dc41ef8fdb0412641afcaf6b165c422ba2d4d523277
3
+ size 4933097720
model-00019-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5a6547103dc271cdd3fbb8f9232e2afcf0c65225755b9d0a1433a337f384d8c
3
+ size 4631063696
model-00020-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32a09b1d8ed45c123ccba96ce4d164a3b39473f2d29b5543fee550ada10b3cd8
3
+ size 4933097720
model-00021-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37fd8a0196b8a9f0f3a53890b738e1f4da6cebe772ea15279fc396a766fec127
3
+ size 4631063696
model-00022-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a9cd168e19da2772a11d8a609445802c301993e7626d24a5f57195bbbe5faf1
3
+ size 4933097720
model-00023-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a347f6340b2643e564d2c2b41a28c073cb554f18d0511f11a675fb8827bb3e9d
3
+ size 4631063696
model-00024-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:215e1e72fb33681a7aca3af321b03808a521301837192258b4095c1909bb5b1e
3
+ size 4933097720
model-00025-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ec0f54170817991685755b8fe6146912a5413fc06371672b6884ff74dc9e874
3
+ size 4631063696
model-00026-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:444cd0660fd91c7789251e1431514b0e9d368e6e64bbcc96cf26084328a69120
3
+ size 4933097720
model-00027-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd8736c3f615c6df8c1ee62a1ba49f6ff68a3aa49d419c2c56ef907fde9aa2a0
3
+ size 4631063696
model-00028-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23a1af7212f28d8de61175175476228f334340d9b51eb6f2cf526f790bd93fee
3
+ size 4933097720
model-00029-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bfaa4bee8f3c9335761ff33d76ddbccdf99780f826f99c4f057577276b83a09
3
+ size 4631063696
model-00030-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a14a35bfcc986cf2c9b03bc3752d44eda8425efb5ddd98201f358212e1873724
3
+ size 4933097720
model-00031-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52e135f00386f90d006adfe3d4ce6d0aeca7a3534d757bdbccaea5be54e5a6bd
3
+ size 4631063696
model-00032-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44fc3cff0edf13c0d34da9656b641b75b8ed9fb155420c32b9df9a2780e32631
3
+ size 4933097720
model-00033-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02ecb0bcc796d13ed0789961222e79dced2b4c2ddbf76958a166e194c4b5d223
3
+ size 4631063696
model-00034-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50ca948e86e9ce49dc60809319bc903dea206f42956ced4d82c5b082ba386cb8
3
+ size 4933097720
model-00035-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af91aea60976d8207e0602da8bffe1e1673805ed796705c4792ea67cc5c4a969
3
+ size 4631063696
model-00036-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59ac6dd428b628ccd419dd40cd7412cba87bd3133ee489cc7df26b463f091055
3
+ size 4933097720
model-00037-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:764d6e58005a3e0f029cf60930d92c96b13016564195d67fe0206bd755d6a16b
3
+ size 4631063696
model-00038-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6e2164be92d3789b34139eeb860f5aee08ed2f001262cb328c6c3a17b113cb1
3
+ size 4933097720
model-00039-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b8e5f08400bf2f45beefd7707cc980d89e15e0c182ce17cd5f5a649dc578eea
3
+ size 4631063696
model-00040-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40312281402fef32bd1850efe79831862c9921c269705a5236779f0127160fa7
3
+ size 4933097720
model-00041-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37dd9ff08711ebe2af6c039b087e9b0bee83ad82876988bbf97bf3598bf562f0
3
+ size 4631063696
model-00042-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af6df0d64644996aba91f30058c75403733236304fcfb147adf1754486caa891
3
+ size 4933097720
model-00043-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dad670ff4bacd3d204769c62ae925864f47b990aa64e08393cd49877a7e3b8f4
3
+ size 4631063696
model-00044-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73be589f58dd7410dbe4e69d54af50be85f69d6c27319b587f6c4aa8f7830c83
3
+ size 4933097720
model-00045-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb21bf7523d6dee8d64bbe158972c750f8060c975bfc16d29afc7d600fa01d98
3
+ size 4631063696
model-00046-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3aef854735b292cbd8f270ba0dd884ae543299f0250eabd3f36df8714f210849
3
+ size 4933097720