ivanfioravanti commited on
Commit
eb97350
·
verified ·
1 Parent(s): 177a39f

Add files using upload-large-folder tool

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. README.md +64 -0
  3. chat_template.jinja +76 -0
  4. config.json +43 -0
  5. generation_config.json +9 -0
  6. model-00001-of-00044.safetensors +3 -0
  7. model-00002-of-00044.safetensors +3 -0
  8. model-00003-of-00044.safetensors +3 -0
  9. model-00004-of-00044.safetensors +3 -0
  10. model-00005-of-00044.safetensors +3 -0
  11. model-00006-of-00044.safetensors +3 -0
  12. model-00007-of-00044.safetensors +3 -0
  13. model-00008-of-00044.safetensors +3 -0
  14. model-00009-of-00044.safetensors +3 -0
  15. model-00010-of-00044.safetensors +3 -0
  16. model-00011-of-00044.safetensors +3 -0
  17. model-00012-of-00044.safetensors +3 -0
  18. model-00013-of-00044.safetensors +3 -0
  19. model-00014-of-00044.safetensors +3 -0
  20. model-00015-of-00044.safetensors +3 -0
  21. model-00016-of-00044.safetensors +3 -0
  22. model-00017-of-00044.safetensors +3 -0
  23. model-00018-of-00044.safetensors +3 -0
  24. model-00019-of-00044.safetensors +3 -0
  25. model-00020-of-00044.safetensors +3 -0
  26. model-00021-of-00044.safetensors +3 -0
  27. model-00022-of-00044.safetensors +3 -0
  28. model-00023-of-00044.safetensors +3 -0
  29. model-00024-of-00044.safetensors +3 -0
  30. model-00025-of-00044.safetensors +3 -0
  31. model-00026-of-00044.safetensors +3 -0
  32. model-00027-of-00044.safetensors +3 -0
  33. model-00028-of-00044.safetensors +3 -0
  34. model-00029-of-00044.safetensors +3 -0
  35. model-00030-of-00044.safetensors +3 -0
  36. model-00031-of-00044.safetensors +3 -0
  37. model-00032-of-00044.safetensors +3 -0
  38. model-00033-of-00044.safetensors +3 -0
  39. model-00034-of-00044.safetensors +3 -0
  40. model-00035-of-00044.safetensors +3 -0
  41. model-00037-of-00044.safetensors +3 -0
  42. model-00039-of-00044.safetensors +3 -0
  43. model-00040-of-00044.safetensors +3 -0
  44. model-00041-of-00044.safetensors +3 -0
  45. model-00042-of-00044.safetensors +3 -0
  46. model-00043-of-00044.safetensors +3 -0
  47. model-00044-of-00044.safetensors +3 -0
  48. model.safetensors.index.json +0 -0
  49. special_tokens_map.json +23 -0
  50. tokenizer.json +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
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: llama3
5
+ tags:
6
+ - Llama-3.1
7
+ - instruct
8
+ - finetune
9
+ - reasoning
10
+ - hybrid-mode
11
+ - chatml
12
+ - function calling
13
+ - tool use
14
+ - json mode
15
+ - structured outputs
16
+ - atropos
17
+ - dataforge
18
+ - long context
19
+ - roleplaying
20
+ - chat
21
+ - mlx
22
+ base_model: NousResearch/Hermes-4-405B
23
+ library_name: mlx
24
+ widget:
25
+ - example_title: Hermes 4
26
+ messages:
27
+ - role: system
28
+ content: You are Hermes 4, a capable, neutrally-aligned assistant. Prefer concise,
29
+ correct answers.
30
+ - role: user
31
+ content: Explain the difference between BFS and DFS to a new CS student.
32
+ pipeline_tag: text-generation
33
+ model-index:
34
+ - name: Hermes-4-Llama-3.1-405B
35
+ results: []
36
+ ---
37
+
38
+ # mlx-community/Hermes-4-405B-4bit
39
+
40
+ This model [mlx-community/Hermes-4-405B-4bit](https://huggingface.co/mlx-community/Hermes-4-405B-4bit) was
41
+ converted to MLX format from [NousResearch/Hermes-4-405B](https://huggingface.co/NousResearch/Hermes-4-405B)
42
+ using mlx-lm version **0.26.3**.
43
+
44
+ ## Use with mlx
45
+
46
+ ```bash
47
+ pip install mlx-lm
48
+ ```
49
+
50
+ ```python
51
+ from mlx_lm import load, generate
52
+
53
+ model, tokenizer = load("mlx-community/Hermes-4-405B-4bit")
54
+
55
+ prompt = "hello"
56
+
57
+ if tokenizer.chat_template is not None:
58
+ messages = [{"role": "user", "content": prompt}]
59
+ prompt = tokenizer.apply_chat_template(
60
+ messages, add_generation_prompt=True
61
+ )
62
+
63
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
64
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set thinking_prompt = 'You are a deep thinking AI, you may use extremely long chains of thought to deeply consider the problem and deliberate with yourself via systematic reasoning processes to help come to a correct solution prior to answering. You should enclose your thoughts and internal monologue inside <think> </think> tags, and then provide your solution or response to the problem.' %}
2
+ {%- set standard_prompt = 'You are Hermes, created by Nous Research.' %}
3
+ {%- if not thinking is defined %}{% set thinking = false %}{% endif %}
4
+ {%- if not keep_cots is defined %}{% set keep_cots = false %}{% endif %}
5
+ {%- if thinking %}{%- set system_prompt = thinking_prompt %}{%- else %}{%- set system_prompt = standard_prompt %}{%- endif %}
6
+ {%- if tools %}
7
+ {{- bos_token + '<|start_header_id|>system<|end_header_id|>\n' }}
8
+ {%- if messages[0]['role'] == 'system' %}
9
+ {{- messages[0]['content'] }}
10
+ {%- else %}
11
+ {{- system_prompt }}
12
+ {%- endif %}
13
+ {{- "\n\n# Tools\n\nYou are a function calling AI model. You 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>" }}
14
+ {%- for tool in tools %}
15
+ {{- "\n" }}
16
+ {{- tool | tojson }}
17
+ {%- endfor %}
18
+ {{- "\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><|eot_id|>" }}
19
+ {%- else %}
20
+ {%- if messages[0]['role'] == 'system' %}
21
+ {{- bos_token + '<|start_header_id|>system<|end_header_id|>\n\n' + messages[0]['content'] + '<|eot_id|>' }}
22
+ {%- else %}
23
+ {{- bos_token + '<|start_header_id|>system<|end_header_id|>\n\n' + system_prompt + '<|eot_id|>' }}
24
+ {%- endif %}
25
+ {%- endif %}
26
+ {%- for message in messages %}
27
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
28
+ {{- '<|start_header_id|>' + message.role + '<|end_header_id|>\n\n' + message.content + '<|eot_id|>' }}
29
+ {%- elif (message.role == "assistant" and not message.tool_calls) %}
30
+ {{- '<|start_header_id|>' + message.role + '<|end_header_id|>\n' }}
31
+ {%- if message.content %}
32
+ {%- set content = message['content'] -%}
33
+ {%- if thinking %}
34
+ {%- if not keep_cots %}
35
+ {%- set content = '<think> </think>' + content.split('</think>', 1)[1] -%}
36
+ {%- endif %}
37
+ {%- endif %}
38
+ {{- '\n' + content + '<|eot_id|>' }}
39
+ {%- endif %}
40
+ {%- elif message.role == "assistant" %}
41
+ {{- '<|start_header_id|>' + message.role + '<|end_header_id|>\n' }}
42
+ {%- if message.content %}
43
+ {%- set content = message['content'] -%}
44
+ {%- if thinking %}
45
+ {%- if not keep_cots %}
46
+ {%- set content = '<think> </think>' + content.split('</think>', 1)[1] -%}
47
+ {%- endif %}
48
+ {%- endif %}
49
+ {{- '\n' + content }}
50
+ {%- endif %}
51
+ {%- for tool_call in message.tool_calls %}
52
+ {%- if tool_call.function is defined %}
53
+ {%- set tool_call = tool_call.function %}
54
+ {%- endif %}
55
+ {{- '\n<tool_call>\n{"name": "' }}
56
+ {{- tool_call.name }}
57
+ {{- '", "arguments": ' }}
58
+ {{- tool_call.arguments | tojson }}
59
+ {{- '}\n</tool_call>' }}
60
+ {%- endfor %}
61
+ {{- '<|eot_id|>' }}
62
+ {%- elif message.role == "tool" %}
63
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
64
+ {{- '<|start_header_id|>user<|end_header_id|>\n' }}
65
+ {%- endif %}
66
+ {{- '\n<tool_response>\n' }}
67
+ {{- message.content }}
68
+ {{- '\n</tool_response>' }}
69
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
70
+ {{- '<|eot_id|>' }}
71
+ {%- endif %}
72
+ {%- endif %}
73
+ {%- endfor %}
74
+ {%- if add_generation_prompt %}
75
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
76
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 128000,
8
+ "eos_token_id": 128001,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 16384,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 53248,
14
+ "max_position_embeddings": 131072,
15
+ "mlp_bias": false,
16
+ "model_type": "llama",
17
+ "num_attention_heads": 128,
18
+ "num_hidden_layers": 126,
19
+ "num_key_value_heads": 8,
20
+ "pretraining_tp": 1,
21
+ "quantization": {
22
+ "group_size": 64,
23
+ "bits": 4
24
+ },
25
+ "quantization_config": {
26
+ "group_size": 64,
27
+ "bits": 4
28
+ },
29
+ "rms_norm_eps": 1e-05,
30
+ "rope_scaling": {
31
+ "factor": 8.0,
32
+ "high_freq_factor": 4.0,
33
+ "low_freq_factor": 1.0,
34
+ "original_max_position_embeddings": 8192,
35
+ "rope_type": "llama3"
36
+ },
37
+ "rope_theta": 500000.0,
38
+ "tie_word_embeddings": false,
39
+ "torch_dtype": "bfloat16",
40
+ "transformers_version": "4.52.4",
41
+ "use_cache": true,
42
+ "vocab_size": 128256
43
+ }
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 128000,
4
+ "do_sample": true,
5
+ "eos_token_id": 128001,
6
+ "temperature": 0.6,
7
+ "top_p": 0.9,
8
+ "transformers_version": "4.52.4"
9
+ }
model-00001-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f135c6cb84476502662e50d7ba5523283372370b2c075ad9ee075ee14522558
3
+ size 5089139565
model-00002-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb027ec6f513e068a31231cd34ea0d8e79a72c8a0b52186d34d7af5e52da9be5
3
+ size 5362621999
model-00003-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f9308c47242e3eb88665bc5b506de3a504adf706fc3a5ac2f28cd561dc94231
3
+ size 5245181580
model-00004-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff14189fe04b01b0dd916080459ecf91a772e4771ae7ed4d505e568f9d895796
3
+ size 5360524409
model-00005-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4058cd8af5e78d6ca9fa63b1b2bfb03744fbdd108c09dc42234ec5ac1d4dce2
3
+ size 5362622060
model-00006-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a3cb57e534578c4123b0961aff9866ec3d3136d34b5948ba4f802f0ae759f20
3
+ size 5245181680
model-00007-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d81d3da876cb5d370f4ed27c40c3c0bb21b2d1e8f78235171d67c7e2b0508d35
3
+ size 5352070668
model-00008-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b01efd9ff80bd34b9b1ca43af3fbb6cd5886a01453b1903b70109c445a649653
3
+ size 5352136421
model-00009-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6be7355e00d6d6c870a3b0087e215de061f8a395cfd49793f7c9a9bb7cff21be
3
+ size 4943191779
model-00010-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:228dc8aaa56565362ba49e6b08b0ecbdbffd415fc53269953ce81067bb98da6f
3
+ size 5352136407
model-00011-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b4e4a797c865f8a73624d14799462b8e47ef7b2ab6b4b62ef23c7c094afeb52
3
+ size 5352136429
model-00012-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8365fd4e26d9bcabf8e4361349dc85dee58261a5b9e2b87db8ad376057a7d767
3
+ size 4943191749
model-00013-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb6f2d2f6bc754cfe0d5b6e1a286161ec72eacea87116498cfe2bb6b6dde7b56
3
+ size 5352136403
model-00014-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dafe0b3737f03b524e217a15609e85972a7aab0f974ece2c1b75542e17b6672
3
+ size 5352136425
model-00015-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76dd5b1e321f3612307a884e48b56a23d4fa6582734332db159a4e95d91c1c71
3
+ size 4943191775
model-00016-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b213ac90434ddfcd734a26bcf439000f9fb3fbb8b96afc4e360d41436ace632c
3
+ size 5362622050
model-00017-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f713e777f759a56d413f3e35d0ce1e44da5d4bdc7f7d2793c0901ef729bf3569
3
+ size 5245181666
model-00018-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6712d95194a68a0ac7266d6d80580d9daf1b6e88a41a8e8d860ff2b581ca4b03
3
+ size 5360524446
model-00019-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2aa5b5c065d559196e92f3d72e2bcaa0386e36c130e3579c1785f0bdb8681e0a
3
+ size 5362622066
model-00020-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2ccc11b9d0f46d654191e3a4ee747c48e9fb6e908d1416340be178975053ddb
3
+ size 5245181660
model-00021-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdf7a9d76a29be67bf138ebaa434771bae43f5b34a578d4516e7a3564b711813
3
+ size 5352070648
model-00022-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a38d0b96422a88901ccc4795ec0ac1350354c97a81e3b5347db8d6e110055bac
3
+ size 5352136441
model-00023-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e51b91eaee2c5f3639f98caeabef2fdc6ad8b4ed915ccaea8c46083efd8a788
3
+ size 4943191801
model-00024-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c7e6a1bc92b3eaf18583fb4c90e61c80b5a20fe7863620f86880ed483b11e6c
3
+ size 5352136421
model-00025-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:846162f856af9efcad5b75efe8544866ebbb6d6a8fe754f0fd27e6ad4c1edfc3
3
+ size 5352136427
model-00026-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c48090fc33b8f8bfbf36a9be07b490e41c500bf67bd021b2141b0370ad4884b
3
+ size 4943191777
model-00027-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11977525eec5492c4b4a0830abba7a9c2c26f584618e2dd936cab89dfc0b71ce
3
+ size 5352136423
model-00028-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13e9646701f1a624dd99433463d7a0fd83b79096a58ae3cd90c402e2a6e661ce
3
+ size 5352136423
model-00029-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e007a2b0c5e9da542dd09ea8a5db88a2521afbfe3b2a358b7de2d87bba24712
3
+ size 4943191787
model-00030-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0e05e17b8fb69d6495eb18cfaab1b0c09db405dd7cde3a449c2594a38ece398
3
+ size 5362622066
model-00031-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e08260d439fe10772c2533cb22c08bb84fb007b5057eee97431967229b33c965
3
+ size 5245181660
model-00032-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:773ded2c7d3a76a813ca770a036012eee9076514d29a8bc93e6e424a085aaf49
3
+ size 5360524448
model-00033-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:698994f371807092b0ed05f44e50d98380f5addd2f904d2a933d709f61a506ab
3
+ size 5362622080
model-00034-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4e9145a665d80ca79212b45d2aa79d16b4eb6d0ccd5a1ec76d42ab9ede988d4
3
+ size 5245181662
model-00035-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac1ad1a3fd10665a79a5e52d145e2c2dff63cc17aa62f64e6fc993e668cb2966
3
+ size 5352070715
model-00037-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf1204edbc681b158fc8509441dd31bfeb08f43a3668a4d78595b5b5c3f19059
3
+ size 4943191871
model-00039-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2443164e68e9f33ef04f5f42231f1fc651827b46ef58ffe5e69a90611255db9c
3
+ size 5352136513
model-00040-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce0b98729e653c393e5cc06c9df596b049044724ce88bf8c7818c6b61b4bd2ca
3
+ size 4943191835
model-00041-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b5ad12ffc66f0106946c8e8068306616ebbc7157cd3ba19c48450c01180ef8d
3
+ size 5352136477
model-00042-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55fe48528575b5241f07e002031e9ff2a1a40f45ee141b75e69997118d3711f7
3
+ size 5352136485
model-00043-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a58eed0b222f2bb2e453ae65d709c667c8084827d0ebc42825ae30108a462ff4
3
+ size 4943191845
model-00044-of-00044.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9bf600d4140ec4744a0646497939703da2b85a84df75663b82ba04fa1a45626
3
+ size 2654307981
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end_of_text|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39e4573a56ca97b0233ddc2dd63f634aeee35b84f352d2ce2aaa5992735cfcad
3
+ size 17209827