Image-Text-to-Text
Transformers
Safetensors
inkling_mm_model
fp8
Mixture of Experts
vllm
llm-compressor
compressed-tensors
conversational
Instructions to use RedHatAI/Inkling-FP8-block with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RedHatAI/Inkling-FP8-block with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="RedHatAI/Inkling-FP8-block") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("RedHatAI/Inkling-FP8-block") model = AutoModelForMultimodalLM.from_pretrained("RedHatAI/Inkling-FP8-block") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use RedHatAI/Inkling-FP8-block with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RedHatAI/Inkling-FP8-block" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/Inkling-FP8-block", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/RedHatAI/Inkling-FP8-block
- SGLang
How to use RedHatAI/Inkling-FP8-block with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "RedHatAI/Inkling-FP8-block" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/Inkling-FP8-block", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "RedHatAI/Inkling-FP8-block" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/Inkling-FP8-block", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use RedHatAI/Inkling-FP8-block with Docker Model Runner:
docker model run hf.co/RedHatAI/Inkling-FP8-block
Add files using upload-large-folder tool
Browse files- .gitattributes +111 -35
- README.md +136 -0
- chat_template.jinja +129 -0
- config.json +199 -0
- model-00001-of-00108.safetensors +3 -0
- model-00002-of-00108.safetensors +3 -0
- model-00003-of-00108.safetensors +3 -0
- model-00004-of-00108.safetensors +3 -0
- model-00005-of-00108.safetensors +3 -0
- model-00006-of-00108.safetensors +3 -0
- model-00007-of-00108.safetensors +3 -0
- model-00008-of-00108.safetensors +3 -0
- model-00009-of-00108.safetensors +3 -0
- model-00010-of-00108.safetensors +3 -0
- model-00012-of-00108.safetensors +3 -0
- model-00013-of-00108.safetensors +3 -0
- model-00014-of-00108.safetensors +3 -0
- model-00015-of-00108.safetensors +3 -0
- model-00016-of-00108.safetensors +3 -0
- model-00017-of-00108.safetensors +3 -0
- model-00018-of-00108.safetensors +3 -0
- model-00019-of-00108.safetensors +3 -0
- model-00020-of-00108.safetensors +3 -0
- model-00021-of-00108.safetensors +3 -0
- model-00022-of-00108.safetensors +3 -0
- model-00023-of-00108.safetensors +3 -0
- model-00024-of-00108.safetensors +3 -0
- model-00025-of-00108.safetensors +3 -0
- model-00027-of-00108.safetensors +3 -0
- model-00028-of-00108.safetensors +3 -0
- model-00029-of-00108.safetensors +3 -0
- model-00030-of-00108.safetensors +3 -0
- model-00031-of-00108.safetensors +3 -0
- model-00033-of-00108.safetensors +3 -0
- model-00034-of-00108.safetensors +3 -0
- model-00035-of-00108.safetensors +3 -0
- model-00037-of-00108.safetensors +3 -0
- model-00038-of-00108.safetensors +3 -0
- model-00039-of-00108.safetensors +3 -0
- model-00046-of-00108.safetensors +3 -0
- model-00047-of-00108.safetensors +3 -0
- model-00048-of-00108.safetensors +3 -0
- model-00056-of-00108.safetensors +3 -0
- model-00057-of-00108.safetensors +3 -0
- model-00059-of-00108.safetensors +3 -0
- model.safetensors.index.json +0 -0
- processor_config.json +46 -0
- special_tokens_map.json +22 -0
- tokenizer.json +3 -0
- tokenizer_config.json +508 -0
.gitattributes
CHANGED
|
@@ -1,35 +1,111 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model-00050-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
model-00014-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
model-00082-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
model-00044-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
model-00052-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
model-00011-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
model-00047-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
model-00070-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
model-00099-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
model-00040-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
model-00029-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
model-00043-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
model-00019-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
model-00012-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
model-00084-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
model-00101-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
model-00093-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
model-00090-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
model-00054-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
model-00035-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
model-00005-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
model-00030-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
model-00007-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
model-00071-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
model-00021-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
model-00003-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
model-00018-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
model-00026-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
model-00034-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
model-00069-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
model-00008-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
model-00059-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
model-00013-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
model-00104-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
model-00038-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
mtp.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
model-00049-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
model-00028-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
model-00027-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
model-00015-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
model-00105-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
model-00048-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
model-00087-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
model-00085-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
model-00017-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
model-00046-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
model-00020-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
model-00051-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
model-00079-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
model-00057-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
model-00036-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
model-00081-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
model-00100-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
model-00097-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
model-00010-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
model-00080-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
model-00032-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
model-00061-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
model-00074-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
model-00060-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
model-00066-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
model-00102-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
model-00095-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
model-00041-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
model-00078-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
model-00083-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
model-00006-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
model-00058-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
model-00045-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
model-00067-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
model-00072-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
model-00103-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
model-00024-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
model-00031-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
model-00096-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
model-00023-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
model-00092-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
model-00076-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
model-00063-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
model-00107-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
model-00098-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
model-00001-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 84 |
+
model-00089-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
model-00009-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
model-00106-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
model-00075-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
model-00025-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
model-00077-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
model-00108-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
model-00086-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
model-00065-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
model-00004-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
model-00039-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
model-00062-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
model-00094-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
model-00068-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
model-00091-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
model-00022-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
model-00088-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
model-00016-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
model-00073-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
model-00033-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
model-00064-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
model-00056-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 106 |
+
model-00037-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 107 |
+
model-00053-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 108 |
+
model-00042-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 109 |
+
model-00002-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 110 |
+
model-00055-of-00108.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 111 |
+
tiktoken/tokenizer.model filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
license_link: https://www.apache.org/licenses/LICENSE-2.0
|
| 4 |
+
pipeline_tag: image-text-to-text
|
| 5 |
+
tags:
|
| 6 |
+
- conversational
|
| 7 |
+
- image-text-to-text
|
| 8 |
+
- audio-text-to-text
|
| 9 |
+
- moe
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Inkling
|
| 13 |
+
|
| 14 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/630e8f0bf6f6d700f50ebd2e/AvmDwmrWRMnKjOWvmLieg.png" style="display: block;margin-left: auto;margin-right: auto;width: 30%;">
|
| 15 |
+
|
| 16 |
+
<p align="center">
|
| 17 |
+
<a href="https://huggingface.co/thinkingmachines/Inkling">BF16</a> |
|
| 18 |
+
<a href="https://huggingface.co/thinkingmachines/Inkling-NVFP4">NVFP4</a> |
|
| 19 |
+
<a href="https://github.com/thinking-machines-lab/tinker-cookbook">Tinker Cookbook</a> |
|
| 20 |
+
<a href="https://tinker-docs.thinkingmachines.ai/cookbook/inkling/">Documentation</a> |
|
| 21 |
+
<a href="https://thinkingmachines.ai/model-acceptable-use-policy">Acceptable Use</a>
|
| 22 |
+
</p>
|
| 23 |
+
|
| 24 |
+
## 1. General Information
|
| 25 |
+
|
| 26 |
+
Inkling is a general-purpose multimodal model that accepts text, image and audio inputs and generates text outputs. It is intended for use in English and other languages, and across multiple coding languages. The model is designed to be used by developers building AI-powered applications, including agentic and tool-use systems, coding assistants, chatbots, and retrieval-augmented generation systems, and is suitable for general-purpose conversational use, instruction-following, and other natural language and multimodal tasks. It is released with open weights to support research, fine-tuning and integration into third-party products by downstream developers.
|
| 27 |
+
|
| 28 |
+
**Languages:** English, with general multilingual capabilities across other languages.
|
| 29 |
+
|
| 30 |
+
## 2. Getting Started
|
| 31 |
+
|
| 32 |
+
For accessing Inkling via Tinker: You can get started by referring to the Tinker Cookbook [here](https://github.com/thinking-machines-lab/tinker-cookbook) and associated documentation [here](https://tinker-docs.thinkingmachines.ai/cookbook/inkling/).
|
| 33 |
+
|
| 34 |
+
Inkling supports local deployment using the following open-source libraries:
|
| 35 |
+
|
| 36 |
+
* SGLang ([recipe](https://docs.sglang.io/cookbook/autoregressive/ThinkingMachines/Inkling), [PR](https://github.com/sgl-project/sglang/pull/31358))
|
| 37 |
+
* vLLM ([recipe](https://recipes.vllm.ai/thinkingmachines/inkling), [PR](https://github.com/vllm-project/vllm/pull/48768))
|
| 38 |
+
* TokenSpeed ([recipe](https://lightseek.org/tokenspeed/recipes/models#Inkling), [PR](https://github.com/lightseekorg/tokenspeed/pull/689))
|
| 39 |
+
* Unsloth ([recipe](https://unsloth.ai/docs/models/inkling), [PR](https://github.com/ggml-org/llama.cpp/pull/25731))
|
| 40 |
+
* Huggingface ([recipe](https://hf.co/blog/thinkingmachines-inkling), [PR](https://github.com/huggingface/transformers/pull/47347))
|
| 41 |
+
|
| 42 |
+
API access is also available through third party inference providers.
|
| 43 |
+
|
| 44 |
+
## 3. Model Properties
|
| 45 |
+
|
| 46 |
+
### Model type
|
| 47 |
+
|
| 48 |
+
Multimodal autoregressive transformer
|
| 49 |
+
|
| 50 |
+
### Architecture type
|
| 51 |
+
|
| 52 |
+
A 66-layer decoder-only transformer with a sparse Mixture-of-Experts (MoE) feed-forward backbone: each token is routed to 6 of 256 experts, plus 2 shared experts active on every token. Attention is a hybrid of local and global layers. The model is natively multimodal — images and video are encoded via a hierarchical patch encoder, and audio via discrete token encoding — with all modalities projected into a shared hidden space and processed jointly by the decoder.
|
| 53 |
+
|
| 54 |
+
### Parameters
|
| 55 |
+
|
| 56 |
+
975B total, 41B active
|
| 57 |
+
|
| 58 |
+
### Numerics support
|
| 59 |
+
|
| 60 |
+
BF16 and NVFP4
|
| 61 |
+
|
| 62 |
+
### Input modalities
|
| 63 |
+
|
| 64 |
+
Inkling accepts text input in UTF-8 encoding, image input in any pixel-based format (with each dimension ideally between 40px and 4096px for optimal performance), and audio input in WAV format sampled at 16kHz (ideally under 20 minutes in length for optimal performance).
|
| 65 |
+
|
| 66 |
+
### Output modalities
|
| 67 |
+
|
| 68 |
+
Inkling generates output as UTF-8 encoded text.
|
| 69 |
+
|
| 70 |
+
## 4. Training
|
| 71 |
+
|
| 72 |
+
Training data includes a broad variety of content types, including text, images, audio, video. Training data for the model was drawn from publicly available sources, acquired from third-parties, or synthetically generated or augmented. Publicly available data includes content from the public internet and publicly accessible repositories.
|
| 73 |
+
|
| 74 |
+
The training data curation process includes cleaning, processing, and modifying datasets. These processing steps, which vary by data type, may include deduplication and filtering to remove junk or other low-quality data, or to advance safety or other objectives.
|
| 75 |
+
|
| 76 |
+
## 5. Evaluations
|
| 77 |
+
|
| 78 |
+
Inkling results are reported at effort=0.99. Comparison scores are generated Jul 14, 2026. Nemotron 3 Ultra, Kimi K2.5, Kimi K2.6, GLM 5.2, and DeepSeek V4 Pro are open weights models; Gemini 3.1 Pro, Claude Fable 5, and GPT 5.6 Sol are closed weights models.
|
| 79 |
+
|
| 80 |
+
| | | Inkling | Nemotron 3 Ultra | Kimi K2.5 | Kimi K2.6 | GLM 5.2 | DeepSeek V4 Pro | Gemini 3.1 Pro (high) | Claude Fable 5 (max) | GPT 5.6 Sol (xhigh) |
|
| 81 |
+
|-----|-----|---------|------------------|-----------|-----------|---------|-----------------|-----------------------|----------------------|---------------------|
|
| 82 |
+
| **Reasoning** | | | | | | | | | | |
|
| 83 |
+
| | HLE (text only) | 29.7% | 26.6% | 29.4% | 35.9% | 40.1% | 35.9% | 44.7% | 53.3% | 47.2% |
|
| 84 |
+
| | HLE (with tools) | 46.0% | 37.4% | 50.2% | 54.0% | 54.7% | 48.2% | 51.4% | 64.5% | 55.0% |
|
| 85 |
+
| | AIME 2026 | 97.1% | 94.2% | 95.8% | 96.4% | 99.2% | 96.7% | 98.3% | – | 99.9% |
|
| 86 |
+
| | GPQA Diamond | 87.2% | 86.7% | 87.9% | 91.1% | 89.5% | 88.8% | 94.1% | 92.6% | 94.1% |
|
| 87 |
+
| **Agentic (coding)** | | | | | | | | | | |
|
| 88 |
+
| | SWEBench Verified | 77.6% | 70.7% | 76.8% | 80.2% | – | 80.6% | 80.6% | 95.0% | – |
|
| 89 |
+
| | SWEBench Pro (Public) | 54.3% | 46.4% | 50.7% | 58.6% | 62.1% | 55.4% | 54.2% | 80.0% | 64.6% |
|
| 90 |
+
| | Terminal Bench 2.1 (Best Harness) | 63.8 | 56.4 | 51.3 | 71.3 | 82.7 | 64 | 73.8 | 84.6 | 89.5 |
|
| 91 |
+
| | GDPVal-AA v2 | 1233 | 1164 | 1009 | 1190 | 1514 | 1307 | 962 | 1760 | 1748 |
|
| 92 |
+
| **Agentic (general)** | | | | | | | | | | |
|
| 93 |
+
| | MCP Atlas | 74.1% | 44.7% | 64.0% | 68.1% | 77.8% | 73.2% | 78.2% | 83.3% | 81.8% |
|
| 94 |
+
| | Tau 3 Banking | 23.7% | 13.8% | 13.2% | 20.6% | 26.8% | 25.8% | 16.5% | 26.8% | 33.0% |
|
| 95 |
+
| **Factuality** | | | | | | | | | | |
|
| 96 |
+
| | BrowseComp (w/ Ctx) | 77.1% | – | 74.9% | 83.2% | – | 83.4% | 85.9% | 88.0% | 89.4% |
|
| 97 |
+
| | SimpleQA Verified | 43.9% | 32.4% | 36.9% | 38.7% | 38.1% | 57.0% | 77.3% | 68.3% | 71.6% |
|
| 98 |
+
| | AA Omniscience | 1.0% | -1.0% | -8.0% | 6.0% | 4.0% | -10.0% | 33.0% | 40.0% | 22.0% |
|
| 99 |
+
| **Chat** | | | | | | | | | | |
|
| 100 |
+
| | IFBench | 79.8% | 81.4% | 70.2% | 76.0% | 73.3% | 76.5% | 77.1% | 63.5% | 72.7% |
|
| 101 |
+
| | Global-MMLU-Lite | 88.7% | 85.6% | 84.0% | 88.4% | 89.2% | 89.3% | 92.7% | 93.3% | 91.8% |
|
| 102 |
+
| **Vision** | | | | | | | | | | |
|
| 103 |
+
| | MMMU Pro (Standard 10) | 73.3% | – | 75.0% | 79.0% | – | – | 82.0% | 84.2% | 83.0% |
|
| 104 |
+
| | Charxiv RQ | 78.1% | – | 77.5% | 80.4% | – | – | 80.2% | 86.5% | 84.7% |
|
| 105 |
+
| | Charxiv RQ (with python) | 82.0% | – | 78.7% | 86.7% | – | – | 89.9% | 89.4% | 87.8% |
|
| 106 |
+
| **Audio** | | | | | | | | | | |
|
| 107 |
+
| | Audio MC | 56.6% | – | – | – | – | – | 66.8% | – | – |
|
| 108 |
+
| | MMAU | 77.2% | – | – | – | – | – | 82.5% | – | – |
|
| 109 |
+
| | VoiceBench | 91.4% | – | – | – | – | – | 94.3% | – | – |
|
| 110 |
+
| **Safety** | | | | | | | | | | |
|
| 111 |
+
| | FORTRESS (Adversarial) | 78.0% | 77.6% | 54.1% | 65.6% | 71.3% | 36.0% | 65.2% | 96.0% | 82.4% |
|
| 112 |
+
| | FORTRESS (Benign) | 95.9% | 90.5% | 98.3% | 97.2% | 90.0% | 98.5% | 98.0% | 55.1% | 98.1% |
|
| 113 |
+
| | StrongREJECT | 98.6% | 98.7% | 99.5% | 99.8% | 98.5% | 98.6% | 98.0% | 98.7% | 98.5% |
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
## 6. Safety
|
| 117 |
+
|
| 118 |
+
We conducted safety evaluations ahead of release, spanning both everyday human-AI interaction and dangerous-capability testing. Because Inkling is multimodal, we paid attention to whether safety behavior held consistently across text, audio, and image inputs. We applied mitigations to reduce risks before release.
|
| 119 |
+
|
| 120 |
+
For everyday interaction, we evaluated sycophancy, harmful manipulation, and psychological-harm patterns like parasocial dependency and validation of delusional reasoning, including through multi-turn, open-ended external red-teaming designed to surface issues that only emerge over longer conversations. We also assessed whether the model refuses genuinely harmful requests without over-refusing benign ones. For CBRN and cyber, we assessed knowledge and procedural uplift through internal evaluations, external testing, and refusal-suppressed variants intended to estimate latent capability with safeguards removed. For loss of control, we evaluated agentic capability, strategic deception, and sabotage potential, benchmarked against public frontier models, and found the model materially below frontier capabilities.
|
| 121 |
+
|
| 122 |
+
Across all areas, we concluded that Inkling did not present risk of material uplift beyond what's already available in the open-weight ecosystem.
|
| 123 |
+
|
| 124 |
+
The residual risks identified in our evaluations — specifically, Inkling's occasional tendency to comply with role-play and indirectly framed prompts concerning harmful topics — are consistent with what you would see from any open-weight model, and are best addressed with defense-in-depth rather than relying on the model's refusals alone. Common downstream moderation tools, such as Llama Guard, are compatible with Inkling and can be layered around the model to catch jailbreak attempts, filter unsafe outputs, and enforce use-case-specific policies. We would encourage treating this kind of input/output classification as a part of your deployment stack, especially for consumer-facing or high-traffic applications where adversarial prompting is more likely.
|
| 125 |
+
|
| 126 |
+
## 7. Bias, risks and limitations
|
| 127 |
+
|
| 128 |
+
Inkling may exhibit general limitations common to foundation models, including hallucination (generating plausible but factually incorrect or unsupported content), occasional failures to follow instructions precisely, and degraded performance in long multi-turn conversations. As with other large-scale models trained on web-derived and synthetic data, Inkling may reflect biases present in its training data, including demographic, cultural, or linguistic biases, and may perform unevenly across languages, dialects, or subject domains that were less represented during training.
|
| 129 |
+
|
| 130 |
+
Inkling's knowledge is limited to information available as of its training cutoff, and it may not reflect events, developments, or changes that occurred afterward.
|
| 131 |
+
|
| 132 |
+
We recommend that downstream developers and deployers apply appropriate human oversight and review for outputs used in high-stakes or safety-critical contexts, rather than relying on Inkling's outputs without verification.
|
| 133 |
+
|
| 134 |
+
* Conduct their own evaluation of Inkling's performance, safety, and fairness for their specific use case, language, and population prior to deployment, particularly for applications involving vulnerable groups.
|
| 135 |
+
* Implement additional safeguards — such as content filtering, rate limiting, and monitoring — at the application layer, especially for open deployment contexts where Inkling's built-in mitigations may not be sufficient on their own.
|
| 136 |
+
* Avoid deploying Inkling in domains such as medical, legal, or safety-critical decision-making without additional fine-tuning, domain-specific validation, and human oversight.
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set effort_map = {"none": 0.0, "minimal": 0.1, "low": 0.2, "medium": 0.7, "high": 0.9, "max": 0.99} -%}
|
| 2 |
+
{%- set role_token = {"user": "<|message_user|>", "assistant": "<|message_model|>", "system": "<|message_system|>", "tool": "<|message_tool|>"} -%}
|
| 3 |
+
|
| 4 |
+
{%- macro emit_thinking_effort() -%}
|
| 5 |
+
{%- set eff = reasoning_effort if reasoning_effort is defined and reasoning_effort is not none else 0.9 -%}
|
| 6 |
+
{%- if eff is string -%}
|
| 7 |
+
{%- set key = eff | trim -%}
|
| 8 |
+
{%- if key not in effort_map -%}
|
| 9 |
+
{{- raise_exception("Unknown reasoning_effort: " ~ eff) -}}
|
| 10 |
+
{%- endif -%}
|
| 11 |
+
{%- set num = effort_map[key] -%}
|
| 12 |
+
{%- else -%}
|
| 13 |
+
{%- set num = eff | float -%}
|
| 14 |
+
{%- endif -%}
|
| 15 |
+
{%- if num < 0.0 or num > 0.99 -%}
|
| 16 |
+
{{- raise_exception("reasoning_effort must be in [0.0, 0.99]") -}}
|
| 17 |
+
{%- endif -%}
|
| 18 |
+
{{- "<|message_system|><|content_text|>Thinking effort level: " -}}
|
| 19 |
+
{%- if num == 0.0 -%}0{%- else -%}{{ num }}{%- endif -%}
|
| 20 |
+
{{- "<|end_message|>" -}}
|
| 21 |
+
{%- endmacro -%}
|
| 22 |
+
|
| 23 |
+
{%- if tools -%}
|
| 24 |
+
{%- set tool_state = namespace(specs=[]) -%}
|
| 25 |
+
{%- for tool in tools -%}
|
| 26 |
+
{%- set fn = tool.function if tool.function is defined else tool -%}
|
| 27 |
+
{%- set spec = {
|
| 28 |
+
"description": (fn.description if fn.description is defined and fn.description else ""),
|
| 29 |
+
"name": fn.name,
|
| 30 |
+
"parameters": (fn.parameters if fn.parameters is defined and fn.parameters else {}),
|
| 31 |
+
"type": (tool.type if tool.type is defined and tool.type else "function"),
|
| 32 |
+
} -%}
|
| 33 |
+
{%- set tool_state.specs = tool_state.specs + [spec] -%}
|
| 34 |
+
{%- endfor -%}
|
| 35 |
+
{{- "<|message_system|>tool_declare<|content_xml|>" -}}
|
| 36 |
+
{{- tool_state.specs | tojson(sort_keys=true, separators=(",", ":")) -}}
|
| 37 |
+
{{- "<|end_message|>" -}}
|
| 38 |
+
{%- endif -%}
|
| 39 |
+
|
| 40 |
+
{%- set state = namespace(effort_emitted=false) -%}
|
| 41 |
+
{%- for message in messages -%}
|
| 42 |
+
{%- if message.role not in role_token -%}
|
| 43 |
+
{{- raise_exception("Unknown message role: " ~ message.role) -}}
|
| 44 |
+
{%- endif -%}
|
| 45 |
+
{%- if not state.effort_emitted and message.role != "system" -%}
|
| 46 |
+
{{- emit_thinking_effort() -}}
|
| 47 |
+
{%- set state.effort_emitted = true -%}
|
| 48 |
+
{%- endif -%}
|
| 49 |
+
|
| 50 |
+
{%- set rtok = role_token[message.role] -%}
|
| 51 |
+
|
| 52 |
+
{%- if message.role == "tool" -%}
|
| 53 |
+
{%- set tool_name_state = namespace(name="") -%}
|
| 54 |
+
{%- if message.name is defined and message.name -%}
|
| 55 |
+
{%- set tool_name_state.name = message.name -%}
|
| 56 |
+
{%- elif message.tool_call_id is defined and message.tool_call_id -%}
|
| 57 |
+
{%- for prev in messages -%}
|
| 58 |
+
{%- if prev.role == "assistant" and prev.tool_calls -%}
|
| 59 |
+
{%- for tc in prev.tool_calls -%}
|
| 60 |
+
{%- if tc.id is defined and tc.id == message.tool_call_id and tc.function.name is defined -%}
|
| 61 |
+
{%- set tool_name_state.name = tc.function.name -%}
|
| 62 |
+
{%- endif -%}
|
| 63 |
+
{%- endfor -%}
|
| 64 |
+
{%- endif -%}
|
| 65 |
+
{%- endfor -%}
|
| 66 |
+
{%- endif -%}
|
| 67 |
+
{{- rtok -}}
|
| 68 |
+
{%- if tool_name_state.name -%}{{- tool_name_state.name -}}{%- endif -%}
|
| 69 |
+
{{- "<|content_text|>" -}}
|
| 70 |
+
{%- if message.content is string -%}{{- message.content -}}{%- endif -%}
|
| 71 |
+
{{- "<|end_message|>" -}}
|
| 72 |
+
|
| 73 |
+
{%- else -%}
|
| 74 |
+
{%- if message.role == "assistant" and message.reasoning_content is defined and message.reasoning_content -%}
|
| 75 |
+
{{- "<|message_model|><|content_thinking|>" ~ message.reasoning_content ~ "<|end_message|>" -}}
|
| 76 |
+
{%- endif -%}
|
| 77 |
+
|
| 78 |
+
{%- if message.content is string -%}
|
| 79 |
+
{{- rtok ~ "<|content_text|>" ~ message.content ~ "<|end_message|>" -}}
|
| 80 |
+
{%- elif message.content -%}
|
| 81 |
+
{%- for part in message.content -%}
|
| 82 |
+
{%- if part is string -%}
|
| 83 |
+
{{- rtok ~ "<|content_text|>" ~ part ~ "<|end_message|>" -}}
|
| 84 |
+
{%- elif part.type is not defined or part.type in ("text", "input_text") -%}
|
| 85 |
+
{%- set text_part = (part.text if part.text is defined and part.text is string else "") -%}
|
| 86 |
+
{{- rtok ~ "<|content_text|>" ~ text_part ~ "<|end_message|>" -}}
|
| 87 |
+
{%- elif part.type in ("image", "input_image", "image_url") -%}
|
| 88 |
+
{{- rtok ~ "<|content_image|><|unused_200054|><|end_message|>" -}}
|
| 89 |
+
{%- elif part.type in ("audio", "input_audio", "audio_url") -%}
|
| 90 |
+
{{- rtok ~ "<|content_audio_input|><|unused_200053|><|audio_end|><|end_message|>" -}}
|
| 91 |
+
{%- else -%}
|
| 92 |
+
{{- raise_exception("Unsupported content part type: " ~ part.type) -}}
|
| 93 |
+
{%- endif -%}
|
| 94 |
+
{%- endfor -%}
|
| 95 |
+
{%- endif -%}
|
| 96 |
+
|
| 97 |
+
{%- if message.role == "assistant" and message.tool_calls -%}
|
| 98 |
+
{%- for tc in message.tool_calls -%}
|
| 99 |
+
{%- set fn = tc.function -%}
|
| 100 |
+
{%- if fn.name is not defined or fn.name is not string -%}
|
| 101 |
+
{{- raise_exception("tool call function name must be a string") -}}
|
| 102 |
+
{%- endif -%}
|
| 103 |
+
{%- set args = fn.arguments if fn.arguments is defined and fn.arguments else {} -%}
|
| 104 |
+
{%- if args is string -%}
|
| 105 |
+
{{- raise_exception("tool call arguments must be a parsed object, not a JSON string; canonicalize upstream") -}}
|
| 106 |
+
{%- endif -%}
|
| 107 |
+
{%- if args is not mapping -%}
|
| 108 |
+
{{- raise_exception("tool call arguments must be an object") -}}
|
| 109 |
+
{%- endif -%}
|
| 110 |
+
{{- "<|message_model|>" ~ fn.name ~ "<|content_invoke_tool_json|>" -}}
|
| 111 |
+
{{- '{"name":' ~ (fn.name | tojson(sort_keys=true, separators=(",", ":"))) ~ ',"args":' -}}
|
| 112 |
+
{{- (args | tojson(sort_keys=true, separators=(",", ":"))) -}}
|
| 113 |
+
{{- "}<|end_message|>" -}}
|
| 114 |
+
{%- endfor -%}
|
| 115 |
+
{%- endif -%}
|
| 116 |
+
|
| 117 |
+
{%- if message.role == "assistant" -%}
|
| 118 |
+
{{- "<|content_model_end_sampling|>" -}}
|
| 119 |
+
{%- endif -%}
|
| 120 |
+
{%- endif -%}
|
| 121 |
+
{%- endfor -%}
|
| 122 |
+
|
| 123 |
+
{%- if not state.effort_emitted -%}
|
| 124 |
+
{{- emit_thinking_effort() -}}
|
| 125 |
+
{%- endif -%}
|
| 126 |
+
|
| 127 |
+
{%- if add_generation_prompt -%}
|
| 128 |
+
{{- "<|message_model|>" -}}
|
| 129 |
+
{%- endif -%}
|
config.json
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"InklingForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"audio_config": {
|
| 6 |
+
"audio_mode": "dmel",
|
| 7 |
+
"bias": false,
|
| 8 |
+
"decoder_dmodel": 6144,
|
| 9 |
+
"dmel_max_value": 2.0,
|
| 10 |
+
"dmel_min_value": -7.0,
|
| 11 |
+
"mel_vocab_size": 16,
|
| 12 |
+
"n_mel_bins": 80,
|
| 13 |
+
"use_audio_norm": true
|
| 14 |
+
},
|
| 15 |
+
"eos_token_id": 200006,
|
| 16 |
+
"model_type": "inkling_mm_model",
|
| 17 |
+
"mtp_config": {
|
| 18 |
+
"chain_hidden_post_norm": false,
|
| 19 |
+
"local_layer_ids": [
|
| 20 |
+
0,
|
| 21 |
+
2,
|
| 22 |
+
4,
|
| 23 |
+
5,
|
| 24 |
+
6,
|
| 25 |
+
7
|
| 26 |
+
],
|
| 27 |
+
"num_nextn_predict_layers": 8
|
| 28 |
+
},
|
| 29 |
+
"quantization_config": {
|
| 30 |
+
"config_groups": {
|
| 31 |
+
"config_group_0": {
|
| 32 |
+
"format": "float-quantized",
|
| 33 |
+
"input_activations": {
|
| 34 |
+
"actorder": null,
|
| 35 |
+
"block_structure": null,
|
| 36 |
+
"dynamic": true,
|
| 37 |
+
"group_size": 128,
|
| 38 |
+
"num_bits": 8,
|
| 39 |
+
"observer": null,
|
| 40 |
+
"observer_kwargs": {},
|
| 41 |
+
"scale_dtype": null,
|
| 42 |
+
"strategy": "group",
|
| 43 |
+
"symmetric": true,
|
| 44 |
+
"type": "float",
|
| 45 |
+
"zp_dtype": null
|
| 46 |
+
},
|
| 47 |
+
"output_activations": null,
|
| 48 |
+
"targets": [
|
| 49 |
+
"Linear"
|
| 50 |
+
],
|
| 51 |
+
"weights": {
|
| 52 |
+
"actorder": null,
|
| 53 |
+
"block_structure": [
|
| 54 |
+
128,
|
| 55 |
+
128
|
| 56 |
+
],
|
| 57 |
+
"dynamic": false,
|
| 58 |
+
"group_size": null,
|
| 59 |
+
"num_bits": 8,
|
| 60 |
+
"observer": "memoryless_minmax",
|
| 61 |
+
"observer_kwargs": {},
|
| 62 |
+
"scale_dtype": null,
|
| 63 |
+
"strategy": "block",
|
| 64 |
+
"symmetric": true,
|
| 65 |
+
"type": "float",
|
| 66 |
+
"zp_dtype": null
|
| 67 |
+
}
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"format": "float-quantized",
|
| 71 |
+
"global_compression_ratio": null,
|
| 72 |
+
"ignore": [
|
| 73 |
+
"model.llm.unembed",
|
| 74 |
+
"model.llm.embed",
|
| 75 |
+
"re:.*norm.*",
|
| 76 |
+
"re:.*bias$",
|
| 77 |
+
"re:.*\\.attn$",
|
| 78 |
+
"re:.*\\.attn\\..*",
|
| 79 |
+
"re:.*sconv$",
|
| 80 |
+
"re:.*gate.*",
|
| 81 |
+
"re:.*global_scale$",
|
| 82 |
+
"re:.*shared_experts.*",
|
| 83 |
+
"re:model\\.llm\\.layers\\.[01]\\.mlp\\..*",
|
| 84 |
+
"re:model\\.llm\\.layers\\.2\\.mlp\\.experts\\..*",
|
| 85 |
+
"re:model\\.visual\\..*",
|
| 86 |
+
"re:model\\.audio\\..*"
|
| 87 |
+
],
|
| 88 |
+
"kv_cache_scheme": null,
|
| 89 |
+
"quant_method": "compressed-tensors",
|
| 90 |
+
"quantization_status": "compressed",
|
| 91 |
+
"transform_config": {},
|
| 92 |
+
"version": "0.17.2.a20260714"
|
| 93 |
+
},
|
| 94 |
+
"text_config": {
|
| 95 |
+
"d_rel": 16,
|
| 96 |
+
"dense_intermediate_size": 24576,
|
| 97 |
+
"dense_mlp_idx": 2,
|
| 98 |
+
"final_logit_softcapping": null,
|
| 99 |
+
"gate_activation": "sigmoid",
|
| 100 |
+
"head_dim": 128,
|
| 101 |
+
"hidden_size": 6144,
|
| 102 |
+
"intermediate_size": 3072,
|
| 103 |
+
"local_layer_ids": [
|
| 104 |
+
0,
|
| 105 |
+
1,
|
| 106 |
+
2,
|
| 107 |
+
3,
|
| 108 |
+
4,
|
| 109 |
+
6,
|
| 110 |
+
7,
|
| 111 |
+
8,
|
| 112 |
+
9,
|
| 113 |
+
10,
|
| 114 |
+
12,
|
| 115 |
+
13,
|
| 116 |
+
14,
|
| 117 |
+
15,
|
| 118 |
+
16,
|
| 119 |
+
18,
|
| 120 |
+
19,
|
| 121 |
+
20,
|
| 122 |
+
21,
|
| 123 |
+
22,
|
| 124 |
+
24,
|
| 125 |
+
25,
|
| 126 |
+
26,
|
| 127 |
+
27,
|
| 128 |
+
28,
|
| 129 |
+
30,
|
| 130 |
+
31,
|
| 131 |
+
32,
|
| 132 |
+
33,
|
| 133 |
+
34,
|
| 134 |
+
36,
|
| 135 |
+
37,
|
| 136 |
+
38,
|
| 137 |
+
39,
|
| 138 |
+
40,
|
| 139 |
+
42,
|
| 140 |
+
43,
|
| 141 |
+
44,
|
| 142 |
+
45,
|
| 143 |
+
46,
|
| 144 |
+
48,
|
| 145 |
+
49,
|
| 146 |
+
50,
|
| 147 |
+
51,
|
| 148 |
+
52,
|
| 149 |
+
54,
|
| 150 |
+
55,
|
| 151 |
+
56,
|
| 152 |
+
57,
|
| 153 |
+
58,
|
| 154 |
+
60,
|
| 155 |
+
61,
|
| 156 |
+
62,
|
| 157 |
+
63,
|
| 158 |
+
64
|
| 159 |
+
],
|
| 160 |
+
"log_scaling_alpha": 0.1,
|
| 161 |
+
"log_scaling_n_floor": 128000,
|
| 162 |
+
"logits_mup_width_multiplier": 24.0,
|
| 163 |
+
"model_max_length": 1048576,
|
| 164 |
+
"n_routed_experts": 256,
|
| 165 |
+
"n_shared_experts": 2,
|
| 166 |
+
"norm_after_topk": true,
|
| 167 |
+
"num_attention_heads": 64,
|
| 168 |
+
"num_experts_per_tok": 6,
|
| 169 |
+
"num_hidden_layers": 66,
|
| 170 |
+
"num_key_value_heads": 8,
|
| 171 |
+
"o_bias": false,
|
| 172 |
+
"q_bias": false,
|
| 173 |
+
"rel_extent": 1024,
|
| 174 |
+
"rms_norm_eps": 1e-06,
|
| 175 |
+
"route_scale": 8.0,
|
| 176 |
+
"sconv_kernel_size": 4,
|
| 177 |
+
"shared_expert_sink": true,
|
| 178 |
+
"sliding_window_size": 512,
|
| 179 |
+
"swa_head_dim": 128,
|
| 180 |
+
"swa_num_attention_heads": 64,
|
| 181 |
+
"swa_num_key_value_heads": 16,
|
| 182 |
+
"torch_dtype": "bfloat16",
|
| 183 |
+
"unpadded_vocab_size": 200058,
|
| 184 |
+
"use_embed_norm": true,
|
| 185 |
+
"use_gate_bias": true,
|
| 186 |
+
"use_global_scale": true,
|
| 187 |
+
"use_sconv": true,
|
| 188 |
+
"vocab_size": 201024
|
| 189 |
+
},
|
| 190 |
+
"vision_config": {
|
| 191 |
+
"decoder_dmodel": 6144,
|
| 192 |
+
"n_channels": 3,
|
| 193 |
+
"n_layers": 4,
|
| 194 |
+
"patch_size": 40,
|
| 195 |
+
"temporal_patch_size": 2,
|
| 196 |
+
"use_vision_norm": true,
|
| 197 |
+
"vision_encoder_type": "hmlp"
|
| 198 |
+
}
|
| 199 |
+
}
|
model-00001-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16dbfa22762ceaa0c4b39b0e20ec0f403ea7a43fbe0acc93a761955bd23ca5c5
|
| 3 |
+
size 15150480120
|
model-00002-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f77383f619a3aabc3e1925c921b9a6fc19c86f4533c72573b41f18b0ea8554de
|
| 3 |
+
size 5720086888
|
model-00003-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb6e53c42577b7f729ea847a52a29625ea11ec55416bec392827e26416d8e723
|
| 3 |
+
size 10130540956
|
model-00004-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4448ffa8515e9cd29cbf476de5c5d326008e99aebee701095dd2002426fb6227
|
| 3 |
+
size 9891524072
|
model-00005-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e03c4a12701913bbda076b7cf487f73e71a5d57f16bd05934fc0bf7496c2350
|
| 3 |
+
size 9740355040
|
model-00006-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:961a17ebc7d5fd777ccbd3dc1d2b07399f94f99304fa6048ab741db78851d81b
|
| 3 |
+
size 9970133700
|
model-00007-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:696edb2f717cba8ff4313cd1c53d66f563924b76684cfe0b11fb336244584f9a
|
| 3 |
+
size 9866393292
|
model-00008-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:965ee7fc9d1e3b243adc3170fc40ae4765ea14eb56acc0908e6eba1e28223a7a
|
| 3 |
+
size 9664856320
|
model-00009-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad42baa8c0f4bf295b41fe936ebc1daf0594979d5d2d8dc64c2415df44753011
|
| 3 |
+
size 4986671920
|
model-00010-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5809e547bde39709e9bbf024f62d14c0f09bd8cd4f37286349b8e64cdf4a5c5f
|
| 3 |
+
size 9916881744
|
model-00012-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:061c9e3232433011952e8077b62c54e435739378b8070ac9bb648105a079fb60
|
| 3 |
+
size 9664922072
|
model-00013-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07c16a6942edc3e8aaaa6e62fa4fba2bd37e86d74255925c2032bd7c6befd915
|
| 3 |
+
size 4895425524
|
model-00014-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:554c917ae1b94bcfff83862bd2e9f69b5d280f3490b00819fab06d87a2136a2c
|
| 3 |
+
size 9664856320
|
model-00015-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df28f964548b426d427f11d21fd678438270dc1c44c38fb02138386c5225382e
|
| 3 |
+
size 9768690136
|
model-00016-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:431a40cc12733f45b0b4bb879019792767d20d85831f004cbd00569212218421
|
| 3 |
+
size 9995239504
|
model-00017-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7c45e820a824566d268223c38ee3e450a0ba86d68c989173669211c46d5b46e
|
| 3 |
+
size 4945687112
|
model-00018-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bec02ed2e23e6660c674675e98463ce4882ca503670aa544042782ca193eb28
|
| 3 |
+
size 10029919088
|
model-00019-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f6a8a800a99d38a25de8c27e08a347d0b1dcdd8be82c11b5f6336432d0723a6
|
| 3 |
+
size 4832428280
|
model-00020-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e56be8168f8d655f7de7ebfa615619001f9d7cf797f8a2632fb9a58354f3b0f
|
| 3 |
+
size 9985899280
|
model-00021-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50f43e125e84a0649d6a4d6d2c14ffbe1c129dc89deca8f254855098c0ef94c9
|
| 3 |
+
size 10269112724
|
model-00022-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5dac9acfad11fd3319c929f5798be24b3bf28288a032c010c74d078c46b8d9d
|
| 3 |
+
size 5389306336
|
model-00023-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3350a5bfff56d111bdebe37b1d997abe4c2f813349d7cecade85b7fc6f0d696e
|
| 3 |
+
size 10096091432
|
model-00024-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e69853458db62b703f44ff46ad2458f12f3d896b0b817b1f1a18b68bcd48428e
|
| 3 |
+
size 9803388856
|
model-00025-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9c18cccb2610a12aaa8b1221d308f55b44486819a362f6ea5fe6ff4c88b2e52
|
| 3 |
+
size 10067647336
|
model-00027-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:790ffe5e18033b5300118b30b91a64d25a47e4a3b9e66ef855491cd78bfe5357
|
| 3 |
+
size 9790754720
|
model-00028-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d10818e628609f65d158a52c64b2889371f2452e9933128ac9397c062a13397
|
| 3 |
+
size 10121091216
|
model-00029-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95e859685275f21ba247157e3ef8a9ae0e1e00864b4b4426d273e3879f06fecf
|
| 3 |
+
size 9966862824
|
model-00030-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49a18aadce3c8f4a447851e17d20e5a424b3cd59b67ce91f369c1d4aac82f59b
|
| 3 |
+
size 9677455832
|
model-00031-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c116d49f02a38291d271f538a7b41a5352d148549bb2590913bf105cd974849d
|
| 3 |
+
size 5213563856
|
model-00033-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4520ca4c813ec188bc7260f85bebc3f3c1b11d5f83ed00c5c68e1b9cb31f2cc1
|
| 3 |
+
size 9819101388
|
model-00034-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24e1afdd2970937650a49e132600d7198403ccc47ffacbccdd1e634d4191f021
|
| 3 |
+
size 9853618424
|
model-00035-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68541d95e6484d90f6e9ad69245171b618e8dc6a2b5b2351e5206a8b097dab1f
|
| 3 |
+
size 9677488600
|
model-00037-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6aaea932bd45b0e22ca71a63869d15f35b7dfbe2bfa884636ec30ecb530d8388
|
| 3 |
+
size 10267770904
|
model-00038-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f53cc6db09fc49838060dcf5d55c1a72f71871ab205b5d5c65cb08034bac8158
|
| 3 |
+
size 9740355140
|
model-00039-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bdae9af2d48843726a122d69b0b1cbb7daa445abaa34513932c30bee938b7b87
|
| 3 |
+
size 9740577512
|
model-00046-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f93c91523800d4079b75fee8714715db43fc95b79aa0fb5596bab73b566bb9e5
|
| 3 |
+
size 6377282400
|
model-00047-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc7ece56f847e4ffd49b2366fbb6d8e75ceeb7912dceece0c9f2dd5abdebdb16
|
| 3 |
+
size 9664873056
|
model-00048-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ccd171c8ba4dd3dea6ef67c43fce7a17867696d978342be4cad023f663156e22
|
| 3 |
+
size 9945070800
|
model-00056-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d25e89045b7c907eb3e5087b14335d9ccc90cfbc5a957c7cfcc43875c1a181d8
|
| 3 |
+
size 9781352764
|
model-00057-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:710c62db09e42b3ed3f67de29ef9f08a499e44df344957d71f6969e1cbf16c69
|
| 3 |
+
size 9938803158
|
model-00059-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:506af7cf0257c495793ac8883132cd7fb10da36d450bd229c1dad48e0f62afdd
|
| 3 |
+
size 10294020328
|
model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
processor_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"audio_token": "<|unused_200053|>",
|
| 3 |
+
"audio_bos_token": "<|content_audio_input|>",
|
| 4 |
+
"dmel_max_value": 2.0,
|
| 5 |
+
"dmel_min_value": -7.0,
|
| 6 |
+
"feature_extractor": {
|
| 7 |
+
"audio_token_duration_s": 0.05,
|
| 8 |
+
"feature_extractor_type": "InklingFeatureExtractor",
|
| 9 |
+
"feature_size": 80,
|
| 10 |
+
"hop_length": 800,
|
| 11 |
+
"n_fft": 1600,
|
| 12 |
+
"padding_side": "right",
|
| 13 |
+
"padding_value": 0.0,
|
| 14 |
+
"return_attention_mask": true,
|
| 15 |
+
"sampling_rate": 16000,
|
| 16 |
+
"window_size": 1600,
|
| 17 |
+
"window_size_multiplier": 2.0
|
| 18 |
+
},
|
| 19 |
+
"image_processor": {
|
| 20 |
+
"do_convert_rgb": true,
|
| 21 |
+
"do_normalize": true,
|
| 22 |
+
"do_rescale": true,
|
| 23 |
+
"do_resize": true,
|
| 24 |
+
"image_mean": [
|
| 25 |
+
0.48145466,
|
| 26 |
+
0.4578275,
|
| 27 |
+
0.40821073
|
| 28 |
+
],
|
| 29 |
+
"image_processor_type": "InklingImageProcessor",
|
| 30 |
+
"image_std": [
|
| 31 |
+
0.26862954,
|
| 32 |
+
0.26130258,
|
| 33 |
+
0.27577711
|
| 34 |
+
],
|
| 35 |
+
"resample": 3,
|
| 36 |
+
"rescale_factor": 0.00392156862745098,
|
| 37 |
+
"size": {
|
| 38 |
+
"height": 40,
|
| 39 |
+
"width": 40
|
| 40 |
+
}
|
| 41 |
+
},
|
| 42 |
+
"image_token": "<|unused_200054|>",
|
| 43 |
+
"image_bos_token": "<|content_image|>",
|
| 44 |
+
"num_dmel_bins": 16,
|
| 45 |
+
"processor_class": "InklingProcessor"
|
| 46 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|endoftext|>",
|
| 4 |
+
"<|message_user|>",
|
| 5 |
+
"<|message_model|>",
|
| 6 |
+
"<|message_system|>",
|
| 7 |
+
"<|message_tool|>",
|
| 8 |
+
"<|content_text|>",
|
| 9 |
+
"<|content_image|>",
|
| 10 |
+
"<|content_model_end_sampling|>",
|
| 11 |
+
"<|content_thinking|>",
|
| 12 |
+
"<|end_message|>",
|
| 13 |
+
"<|content_audio_input|>",
|
| 14 |
+
"<|content_tool_error|>",
|
| 15 |
+
"<|audio|>",
|
| 16 |
+
"<|content_xml|>",
|
| 17 |
+
"<|begin_of_text|>",
|
| 18 |
+
"<|audio_end|>",
|
| 19 |
+
"<|content_invoke_tool_json|>",
|
| 20 |
+
"<|content_invoke_tool_text|>"
|
| 21 |
+
]
|
| 22 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fb6333a7db8fe5da90728e741e4a3ee4ac2ae12c5dd4958cc6f31688787d3c2
|
| 3 |
+
size 27875797
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,508 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"199998": {
|
| 4 |
+
"content": "<|unused|>",
|
| 5 |
+
"single_word": false,
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"199999": {
|
| 12 |
+
"content": "<|endoftext|>",
|
| 13 |
+
"single_word": false,
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"200000": {
|
| 20 |
+
"content": "<|message_user|>",
|
| 21 |
+
"single_word": false,
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"200001": {
|
| 28 |
+
"content": "<|message_model|>",
|
| 29 |
+
"single_word": false,
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"200002": {
|
| 36 |
+
"content": "<|message_system|>",
|
| 37 |
+
"single_word": false,
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"200003": {
|
| 44 |
+
"content": "<|message_tool|>",
|
| 45 |
+
"single_word": false,
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"200004": {
|
| 52 |
+
"content": "<|content_text|>",
|
| 53 |
+
"single_word": false,
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"200005": {
|
| 60 |
+
"content": "<|content_image|>",
|
| 61 |
+
"single_word": false,
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"200006": {
|
| 68 |
+
"content": "<|content_model_end_sampling|>",
|
| 69 |
+
"single_word": false,
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"200007": {
|
| 76 |
+
"content": "<|unused_200007|>",
|
| 77 |
+
"single_word": false,
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"200008": {
|
| 84 |
+
"content": "<|content_thinking|>",
|
| 85 |
+
"single_word": false,
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"200009": {
|
| 92 |
+
"content": "<|unused_200009|>",
|
| 93 |
+
"single_word": false,
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"200010": {
|
| 100 |
+
"content": "<|end_message|>",
|
| 101 |
+
"single_word": false,
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"200011": {
|
| 108 |
+
"content": "<|unused_200011|>",
|
| 109 |
+
"single_word": false,
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"200012": {
|
| 116 |
+
"content": "<|unused_200012|>",
|
| 117 |
+
"single_word": false,
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"200013": {
|
| 124 |
+
"content": "<|unused_200013|>",
|
| 125 |
+
"single_word": false,
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"200014": {
|
| 132 |
+
"content": "<|unused_200014|>",
|
| 133 |
+
"single_word": false,
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"200015": {
|
| 140 |
+
"content": "<|unused_200015|>",
|
| 141 |
+
"single_word": false,
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"200016": {
|
| 148 |
+
"content": "<|unused_200016|>",
|
| 149 |
+
"single_word": false,
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"200017": {
|
| 156 |
+
"content": "<|unused_200017|>",
|
| 157 |
+
"single_word": false,
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"200018": {
|
| 164 |
+
"content": "<|unused_200018|>",
|
| 165 |
+
"single_word": false,
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"special": true
|
| 170 |
+
},
|
| 171 |
+
"200019": {
|
| 172 |
+
"content": "<|unused_200019|>",
|
| 173 |
+
"single_word": false,
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"special": true
|
| 178 |
+
},
|
| 179 |
+
"200020": {
|
| 180 |
+
"content": "<|content_audio_input|>",
|
| 181 |
+
"single_word": false,
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"special": true
|
| 186 |
+
},
|
| 187 |
+
"200021": {
|
| 188 |
+
"content": "<|unused_200021|>",
|
| 189 |
+
"single_word": false,
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"special": true
|
| 194 |
+
},
|
| 195 |
+
"200022": {
|
| 196 |
+
"content": "<|content_tool_error|>",
|
| 197 |
+
"single_word": false,
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"rstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"special": true
|
| 202 |
+
},
|
| 203 |
+
"200023": {
|
| 204 |
+
"content": "<|audio|>",
|
| 205 |
+
"single_word": false,
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"rstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"special": true
|
| 210 |
+
},
|
| 211 |
+
"200024": {
|
| 212 |
+
"content": "<|content_xml|>",
|
| 213 |
+
"single_word": false,
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"rstrip": false,
|
| 216 |
+
"normalized": false,
|
| 217 |
+
"special": true
|
| 218 |
+
},
|
| 219 |
+
"200025": {
|
| 220 |
+
"content": "<|unused_200025|>",
|
| 221 |
+
"single_word": false,
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"rstrip": false,
|
| 224 |
+
"normalized": false,
|
| 225 |
+
"special": true
|
| 226 |
+
},
|
| 227 |
+
"200026": {
|
| 228 |
+
"content": "<|unused_200026|>",
|
| 229 |
+
"single_word": false,
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"rstrip": false,
|
| 232 |
+
"normalized": false,
|
| 233 |
+
"special": true
|
| 234 |
+
},
|
| 235 |
+
"200027": {
|
| 236 |
+
"content": "<|unused_200027|>",
|
| 237 |
+
"single_word": false,
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"rstrip": false,
|
| 240 |
+
"normalized": false,
|
| 241 |
+
"special": true
|
| 242 |
+
},
|
| 243 |
+
"200028": {
|
| 244 |
+
"content": "<|begin_of_text|>",
|
| 245 |
+
"single_word": false,
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"rstrip": false,
|
| 248 |
+
"normalized": false,
|
| 249 |
+
"special": true
|
| 250 |
+
},
|
| 251 |
+
"200029": {
|
| 252 |
+
"content": "<|unused_200029|>",
|
| 253 |
+
"single_word": false,
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"rstrip": false,
|
| 256 |
+
"normalized": false,
|
| 257 |
+
"special": true
|
| 258 |
+
},
|
| 259 |
+
"200030": {
|
| 260 |
+
"content": "<|unused_200030|>",
|
| 261 |
+
"single_word": false,
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"normalized": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
"200031": {
|
| 268 |
+
"content": "<|unused_200031|>",
|
| 269 |
+
"single_word": false,
|
| 270 |
+
"lstrip": false,
|
| 271 |
+
"rstrip": false,
|
| 272 |
+
"normalized": false,
|
| 273 |
+
"special": true
|
| 274 |
+
},
|
| 275 |
+
"200032": {
|
| 276 |
+
"content": "<|unused_200032|>",
|
| 277 |
+
"single_word": false,
|
| 278 |
+
"lstrip": false,
|
| 279 |
+
"rstrip": false,
|
| 280 |
+
"normalized": false,
|
| 281 |
+
"special": true
|
| 282 |
+
},
|
| 283 |
+
"200033": {
|
| 284 |
+
"content": "<|unused_200033|>",
|
| 285 |
+
"single_word": false,
|
| 286 |
+
"lstrip": false,
|
| 287 |
+
"rstrip": false,
|
| 288 |
+
"normalized": false,
|
| 289 |
+
"special": true
|
| 290 |
+
},
|
| 291 |
+
"200034": {
|
| 292 |
+
"content": "<|unused_200034|>",
|
| 293 |
+
"single_word": false,
|
| 294 |
+
"lstrip": false,
|
| 295 |
+
"rstrip": false,
|
| 296 |
+
"normalized": false,
|
| 297 |
+
"special": true
|
| 298 |
+
},
|
| 299 |
+
"200035": {
|
| 300 |
+
"content": "<|unused_200035|>",
|
| 301 |
+
"single_word": false,
|
| 302 |
+
"lstrip": false,
|
| 303 |
+
"rstrip": false,
|
| 304 |
+
"normalized": false,
|
| 305 |
+
"special": true
|
| 306 |
+
},
|
| 307 |
+
"200036": {
|
| 308 |
+
"content": "<|unused_200036|>",
|
| 309 |
+
"single_word": false,
|
| 310 |
+
"lstrip": false,
|
| 311 |
+
"rstrip": false,
|
| 312 |
+
"normalized": false,
|
| 313 |
+
"special": true
|
| 314 |
+
},
|
| 315 |
+
"200037": {
|
| 316 |
+
"content": "<|unused_200037|>",
|
| 317 |
+
"single_word": false,
|
| 318 |
+
"lstrip": false,
|
| 319 |
+
"rstrip": false,
|
| 320 |
+
"normalized": false,
|
| 321 |
+
"special": true
|
| 322 |
+
},
|
| 323 |
+
"200038": {
|
| 324 |
+
"content": "<|unused_200038|>",
|
| 325 |
+
"single_word": false,
|
| 326 |
+
"lstrip": false,
|
| 327 |
+
"rstrip": false,
|
| 328 |
+
"normalized": false,
|
| 329 |
+
"special": true
|
| 330 |
+
},
|
| 331 |
+
"200039": {
|
| 332 |
+
"content": "<|unused_200039|>",
|
| 333 |
+
"single_word": false,
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"normalized": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
"200040": {
|
| 340 |
+
"content": "<|unused_200040|>",
|
| 341 |
+
"single_word": false,
|
| 342 |
+
"lstrip": false,
|
| 343 |
+
"rstrip": false,
|
| 344 |
+
"normalized": false,
|
| 345 |
+
"special": true
|
| 346 |
+
},
|
| 347 |
+
"200041": {
|
| 348 |
+
"content": "<|unused_200041|>",
|
| 349 |
+
"single_word": false,
|
| 350 |
+
"lstrip": false,
|
| 351 |
+
"rstrip": false,
|
| 352 |
+
"normalized": false,
|
| 353 |
+
"special": true
|
| 354 |
+
},
|
| 355 |
+
"200042": {
|
| 356 |
+
"content": "<|unused_200042|>",
|
| 357 |
+
"single_word": false,
|
| 358 |
+
"lstrip": false,
|
| 359 |
+
"rstrip": false,
|
| 360 |
+
"normalized": false,
|
| 361 |
+
"special": true
|
| 362 |
+
},
|
| 363 |
+
"200043": {
|
| 364 |
+
"content": "<|audio_end|>",
|
| 365 |
+
"single_word": false,
|
| 366 |
+
"lstrip": false,
|
| 367 |
+
"rstrip": false,
|
| 368 |
+
"normalized": false,
|
| 369 |
+
"special": true
|
| 370 |
+
},
|
| 371 |
+
"200044": {
|
| 372 |
+
"content": "<|unused_200044|>",
|
| 373 |
+
"single_word": false,
|
| 374 |
+
"lstrip": false,
|
| 375 |
+
"rstrip": false,
|
| 376 |
+
"normalized": false,
|
| 377 |
+
"special": true
|
| 378 |
+
},
|
| 379 |
+
"200045": {
|
| 380 |
+
"content": "<|unused_200045|>",
|
| 381 |
+
"single_word": false,
|
| 382 |
+
"lstrip": false,
|
| 383 |
+
"rstrip": false,
|
| 384 |
+
"normalized": false,
|
| 385 |
+
"special": true
|
| 386 |
+
},
|
| 387 |
+
"200046": {
|
| 388 |
+
"content": "<|unused_200046|>",
|
| 389 |
+
"single_word": false,
|
| 390 |
+
"lstrip": false,
|
| 391 |
+
"rstrip": false,
|
| 392 |
+
"normalized": false,
|
| 393 |
+
"special": true
|
| 394 |
+
},
|
| 395 |
+
"200047": {
|
| 396 |
+
"content": "<|unused_200047|>",
|
| 397 |
+
"single_word": false,
|
| 398 |
+
"lstrip": false,
|
| 399 |
+
"rstrip": false,
|
| 400 |
+
"normalized": false,
|
| 401 |
+
"special": true
|
| 402 |
+
},
|
| 403 |
+
"200048": {
|
| 404 |
+
"content": "<|unused_200048|>",
|
| 405 |
+
"single_word": false,
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"normalized": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
"200049": {
|
| 412 |
+
"content": "<|content_invoke_tool_json|>",
|
| 413 |
+
"single_word": false,
|
| 414 |
+
"lstrip": false,
|
| 415 |
+
"rstrip": false,
|
| 416 |
+
"normalized": false,
|
| 417 |
+
"special": true
|
| 418 |
+
},
|
| 419 |
+
"200050": {
|
| 420 |
+
"content": "<|unused_200050|>",
|
| 421 |
+
"single_word": false,
|
| 422 |
+
"lstrip": false,
|
| 423 |
+
"rstrip": false,
|
| 424 |
+
"normalized": false,
|
| 425 |
+
"special": true
|
| 426 |
+
},
|
| 427 |
+
"200051": {
|
| 428 |
+
"content": "<|unused_200051|>",
|
| 429 |
+
"single_word": false,
|
| 430 |
+
"lstrip": false,
|
| 431 |
+
"rstrip": false,
|
| 432 |
+
"normalized": false,
|
| 433 |
+
"special": true
|
| 434 |
+
},
|
| 435 |
+
"200052": {
|
| 436 |
+
"content": "<|unused_200052|>",
|
| 437 |
+
"single_word": false,
|
| 438 |
+
"lstrip": false,
|
| 439 |
+
"rstrip": false,
|
| 440 |
+
"normalized": false,
|
| 441 |
+
"special": true
|
| 442 |
+
},
|
| 443 |
+
"200053": {
|
| 444 |
+
"content": "<|unused_200053|>",
|
| 445 |
+
"single_word": false,
|
| 446 |
+
"lstrip": false,
|
| 447 |
+
"rstrip": false,
|
| 448 |
+
"normalized": false,
|
| 449 |
+
"special": true
|
| 450 |
+
},
|
| 451 |
+
"200054": {
|
| 452 |
+
"content": "<|unused_200054|>",
|
| 453 |
+
"single_word": false,
|
| 454 |
+
"lstrip": false,
|
| 455 |
+
"rstrip": false,
|
| 456 |
+
"normalized": false,
|
| 457 |
+
"special": true
|
| 458 |
+
},
|
| 459 |
+
"200055": {
|
| 460 |
+
"content": "<|unused_200055|>",
|
| 461 |
+
"single_word": false,
|
| 462 |
+
"lstrip": false,
|
| 463 |
+
"rstrip": false,
|
| 464 |
+
"normalized": false,
|
| 465 |
+
"special": true
|
| 466 |
+
},
|
| 467 |
+
"200056": {
|
| 468 |
+
"content": "<|unused_200056|>",
|
| 469 |
+
"single_word": false,
|
| 470 |
+
"lstrip": false,
|
| 471 |
+
"rstrip": false,
|
| 472 |
+
"normalized": false,
|
| 473 |
+
"special": true
|
| 474 |
+
},
|
| 475 |
+
"200057": {
|
| 476 |
+
"content": "<|content_invoke_tool_text|>",
|
| 477 |
+
"single_word": false,
|
| 478 |
+
"lstrip": false,
|
| 479 |
+
"rstrip": false,
|
| 480 |
+
"normalized": false,
|
| 481 |
+
"special": true
|
| 482 |
+
}
|
| 483 |
+
},
|
| 484 |
+
"clean_up_tokenization_spaces": false,
|
| 485 |
+
"fix_mistral_regex": false,
|
| 486 |
+
"extra_special_tokens": {
|
| 487 |
+
"endoftext": "<|endoftext|>",
|
| 488 |
+
"message_user": "<|message_user|>",
|
| 489 |
+
"message_model": "<|message_model|>",
|
| 490 |
+
"message_system": "<|message_system|>",
|
| 491 |
+
"message_tool": "<|message_tool|>",
|
| 492 |
+
"content_text": "<|content_text|>",
|
| 493 |
+
"content_image": "<|content_image|>",
|
| 494 |
+
"content_model_end_sampling": "<|content_model_end_sampling|>",
|
| 495 |
+
"content_thinking": "<|content_thinking|>",
|
| 496 |
+
"end_message": "<|end_message|>",
|
| 497 |
+
"content_audio_input": "<|content_audio_input|>",
|
| 498 |
+
"content_tool_error": "<|content_tool_error|>",
|
| 499 |
+
"audio": "<|audio|>",
|
| 500 |
+
"content_xml": "<|content_xml|>",
|
| 501 |
+
"begin_of_text": "<|begin_of_text|>",
|
| 502 |
+
"audio_end": "<|audio_end|>",
|
| 503 |
+
"content_invoke_tool_json": "<|content_invoke_tool_json|>",
|
| 504 |
+
"content_invoke_tool_text": "<|content_invoke_tool_text|>"
|
| 505 |
+
},
|
| 506 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 507 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 508 |
+
}
|