Text Generation
Transformers
Safetensors
llama
conversational
text-generation-inference
compressed-tensors
leonardlin commited on
Commit
fdf6d51
·
verified ·
1 Parent(s): 2c08dbb

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": "float"
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": "float"
56
+ }
57
+ }
58
+ },
59
+ "format": "float-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:6e47b87fcc6baa17fda660be94c6f328ca45bfcd00da55199dc33a3965197219
3
+ size 4773188696
model-00002-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9269f88c58c78fd6da69d01b1251b7d14d775ba910bafd9bbc9b45a4f0d03d3f
3
+ size 4933097744
model-00003-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dbcfdceb600640a3bcd59c9061cc48375fc4fc84cd6b4ace0cf8e8151e1cda0
3
+ size 4631063728
model-00004-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:024bdf9fe1baef6705036a00752bd952325c586dbb911f7cbc9c711936756bc4
3
+ size 4933097744
model-00005-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19cbf86c9a0b863825f69338b91c99116393961d2a5d27a1551193019f2688bc
3
+ size 4631063728
model-00006-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f57efa06045fa3c00123825a5d626e3a0904b4ffd343015b778f86c498b562f0
3
+ size 4933097744
model-00007-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea8dd51af10a531475d828ebb52fcacbe03da04ce57888da3226a1d55b62be9a
3
+ size 4631063728
model-00008-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f09d6f9029d722a142500222dd36cadd73a84c07d3c8869292cc48f458d01d0f
3
+ size 4933097760
model-00009-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e3ad35e3d28db68ae1eba9403bfd22093ecc40d3cd4a056e340143a6c804fb1
3
+ size 4631063752
model-00010-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fc70b6f8b1b6b5c884feefd0fd54e989fb1467ff3c427fc3f3e9d4e8cae1b4f
3
+ size 4933097760
model-00011-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4da973060a4acc58ed139954982ca4ce1911f9ffa15bc37e5798b89e88842115
3
+ size 4631063752
model-00012-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e8316d8b8cb1ab2d5d5b06d9f864a1e4c52692e42971ea288ff1f9a02306761
3
+ size 4933097760
model-00013-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:899a51e6ae11fb3cc8bbc04822b71d8debb514d27c87f0443c292bb44ee1feb1
3
+ size 4631063752
model-00014-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7c0f02fa6035f16b1128b658d15d98d48933d871dca138427c4c4aa685fc536
3
+ size 4933097760
model-00015-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aca24ede99af7b9584ab098d45c293d9c24ee72c0b06a943dd9251083de626f
3
+ size 4631063752
model-00016-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7d4b5e637be334308b7c37549f22f228d1666de8ffed90bd7ae56b8029db373
3
+ size 4933097760
model-00017-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44f532d7027b901e2d6ed6c1a714560c4e89c57d26b5406e66d8bbdb169c0133
3
+ size 4631063752
model-00018-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57abc16f63a264d43ab90d6f7dc2fa967260870abdb05f0094836c4e1ab468b4
3
+ size 4933097760
model-00019-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0390cac8c0cfc8aef9e666b86afe0ae4c7ad65ec5359aa38807b4173ff8fc3f5
3
+ size 4631063752
model-00020-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75d8ac41b71e7c0f2478e7de3ed5de63fc4b7aaef1d71a850e7d50141fc26337
3
+ size 4933097760
model-00021-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94dbeb9ac9aceb95407c72aec83476149d53f4ab95d7504ce7c331e4b4ae8553
3
+ size 4631063752
model-00022-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b6736400aadd08f535fc565fc7486594817ae24fba3891f3179fa14d761a2bc
3
+ size 4933097760
model-00023-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81f7c45eb54c54be2cfd68ffb127aaa72123ba751e501d6d285807e154e194e3
3
+ size 4631063752
model-00024-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f3e1633d44877784d84ca0fbe63b3cd47f4594c022b7b0e74f067b1bb056779
3
+ size 4933097760
model-00025-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f79318e382056a94b9311555ee063f466073a89ed19d458edcd126aeaa38d81f
3
+ size 4631063752
model-00026-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e1c7e53d8d24fc33a34cb117426d64064c4210f52213e33a9fa116068b47b01
3
+ size 4933097760
model-00027-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1f6af75c7326a9a64bf021139297995c01937e3c3ca2def34fa306440fd42e2
3
+ size 4631063752
model-00028-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fec62fea6eee9d37a975f50600e1327967c2eeb3469708fd8a1a173dc392a495
3
+ size 4933097760
model-00029-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2794679d3e87e9b70feef33bc53ccd4d6b08a82b3fbf999454f26180651cd396
3
+ size 4631063752
model-00030-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f67fab4af9a1bc01ea9282d90664ba619a1f927574312034f233e996a2a30a5
3
+ size 4933097760
model-00031-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25c43e66fe1907a180f7ec7d211f924fba281d42d5b6dd06a73bd6d9e17a88ff
3
+ size 4631063752
model-00032-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:016665df4a1e921eb47eedb5769ec5a5861828dd2a2a2601ec19726a00424a83
3
+ size 4933097760
model-00033-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35e3ab0f73f8cddd0f77af1e6ae179cb501fb7e3ecb67312a52998153297fc92
3
+ size 4631063752
model-00034-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7ded2eaafa9c7db8f9a6bc63e93f320a49b2be01c3307d0762c6b948594f368
3
+ size 4933097760
model-00035-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9caaa11b3351cae93c9bc02183957b3614674cfe6a63f560d658935c476ebbe3
3
+ size 4631063752
model-00036-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2745cf0e4839ae2ed313fea5c4a2bd8cae114f79d1aace360a4f0d7e58f8535
3
+ size 4933097760
model-00037-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a79322b32c98911701585c9cffc21f188a37da4c63ac20fb3826804fe654b6a
3
+ size 4631063752
model-00038-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e15439439641d3642923672c2c5a987df5bc1654589a47938479ba71004a0f8
3
+ size 4933097760
model-00039-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d52e90f84f4494f7e31e017414a079d7e764d12fc7dea1ec98aa885e6fb28182
3
+ size 4631063752
model-00040-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:995e7ddde6c3457fcfb0ba5088e45bf60f34c414fa08847671a54c461410eae0
3
+ size 4933097760
model-00041-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e219d118c6297d5220fd0f2e1469f4aaf73a68abfa188442d5723ffb85a71441
3
+ size 4631063752
model-00042-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86f433707b21a66fe4c5c4c8006de9963c69192428ade720944852ca2024fc50
3
+ size 4933097760
model-00043-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f59f6971febc260912db91f04b74be4fbb4f27f94145efd471081c07bdcee9a
3
+ size 4631063752
model-00044-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8aa8fe080018c0c100129a44323175ef18ffe74e57ebaa31972f85cfb4938d00
3
+ size 4933097760
model-00045-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b304b639570096aeb702b3c10ab5220ab9b00d8980e9c8a960c2035882e597dd
3
+ size 4631063752
model-00046-of-00086.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:152eaa8d6b86b11f282c88fd21a575ffe11bb266a5e8384d06d71c9fd1d177cc
3
+ size 4933097760