Image-Text-to-Text
Transformers
Safetensors
inkling_mm_model
conversational
audio-text-to-text
Mixture of Experts
Instructions to use thinkingmachines/Inkling with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thinkingmachines/Inkling with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="thinkingmachines/Inkling") 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("thinkingmachines/Inkling") model = AutoModelForMultimodalLM.from_pretrained("thinkingmachines/Inkling") 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]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use thinkingmachines/Inkling with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "thinkingmachines/Inkling" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling", "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/thinkingmachines/Inkling
- SGLang
How to use thinkingmachines/Inkling 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 "thinkingmachines/Inkling" \ --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": "thinkingmachines/Inkling", "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 "thinkingmachines/Inkling" \ --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": "thinkingmachines/Inkling", "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 thinkingmachines/Inkling with Docker Model Runner:
docker model run hf.co/thinkingmachines/Inkling
Commit ·
91b051f
0
Parent(s):
Model release
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +111 -0
- README.md +136 -0
- config.json +134 -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-00011-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-00026-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-00032-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-00036-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-00040-of-00108.safetensors +3 -0
- model-00041-of-00108.safetensors +3 -0
- model-00042-of-00108.safetensors +3 -0
- model-00043-of-00108.safetensors +3 -0
- model-00044-of-00108.safetensors +3 -0
- model-00045-of-00108.safetensors +3 -0
- model-00046-of-00108.safetensors +3 -0
- model-00047-of-00108.safetensors +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 ([docs](https://docs.sglang.io/cookbook/autoregressive/ThinkingMachines/Inkling), PR)
|
| 37 |
+
* vLLM ([docs](https://recipes.vllm.ai/thinkingmachines/inkling), PR)
|
| 38 |
+
* TokenSpeed ([docs](https://lightseek.org/tokenspeed/recipes/models#Inkling), PR)
|
| 39 |
+
* Unsloth ([docs](https://unsloth.ai/docs/models/inkling), PR)
|
| 40 |
+
* Huggingface (docs, PR)
|
| 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 from the r/acc leaderboard, 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) | 30.0% | 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.9% | 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 | 22.3% | 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.
|
config.json
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"InklingForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "inkling_mm_model",
|
| 6 |
+
"eos_token_id": 200006,
|
| 7 |
+
"text_config": {
|
| 8 |
+
"model_max_length": 1048576,
|
| 9 |
+
"torch_dtype": "bfloat16",
|
| 10 |
+
"hidden_size": 6144,
|
| 11 |
+
"num_hidden_layers": 66,
|
| 12 |
+
"vocab_size": 201024,
|
| 13 |
+
"num_attention_heads": 64,
|
| 14 |
+
"num_key_value_heads": 8,
|
| 15 |
+
"head_dim": 128,
|
| 16 |
+
"d_rel": 16,
|
| 17 |
+
"rel_extent": 1024,
|
| 18 |
+
"q_bias": false,
|
| 19 |
+
"o_bias": false,
|
| 20 |
+
"log_scaling_n_floor": 128000,
|
| 21 |
+
"log_scaling_alpha": 0.1,
|
| 22 |
+
"rms_norm_eps": 1e-06,
|
| 23 |
+
"use_embed_norm": true,
|
| 24 |
+
"local_layer_ids": [
|
| 25 |
+
0,
|
| 26 |
+
1,
|
| 27 |
+
2,
|
| 28 |
+
3,
|
| 29 |
+
4,
|
| 30 |
+
6,
|
| 31 |
+
7,
|
| 32 |
+
8,
|
| 33 |
+
9,
|
| 34 |
+
10,
|
| 35 |
+
12,
|
| 36 |
+
13,
|
| 37 |
+
14,
|
| 38 |
+
15,
|
| 39 |
+
16,
|
| 40 |
+
18,
|
| 41 |
+
19,
|
| 42 |
+
20,
|
| 43 |
+
21,
|
| 44 |
+
22,
|
| 45 |
+
24,
|
| 46 |
+
25,
|
| 47 |
+
26,
|
| 48 |
+
27,
|
| 49 |
+
28,
|
| 50 |
+
30,
|
| 51 |
+
31,
|
| 52 |
+
32,
|
| 53 |
+
33,
|
| 54 |
+
34,
|
| 55 |
+
36,
|
| 56 |
+
37,
|
| 57 |
+
38,
|
| 58 |
+
39,
|
| 59 |
+
40,
|
| 60 |
+
42,
|
| 61 |
+
43,
|
| 62 |
+
44,
|
| 63 |
+
45,
|
| 64 |
+
46,
|
| 65 |
+
48,
|
| 66 |
+
49,
|
| 67 |
+
50,
|
| 68 |
+
51,
|
| 69 |
+
52,
|
| 70 |
+
54,
|
| 71 |
+
55,
|
| 72 |
+
56,
|
| 73 |
+
57,
|
| 74 |
+
58,
|
| 75 |
+
60,
|
| 76 |
+
61,
|
| 77 |
+
62,
|
| 78 |
+
63,
|
| 79 |
+
64
|
| 80 |
+
],
|
| 81 |
+
"dense_mlp_idx": 2,
|
| 82 |
+
"use_sconv": true,
|
| 83 |
+
"sconv_kernel_size": 4,
|
| 84 |
+
"unpadded_vocab_size": 200058,
|
| 85 |
+
"logits_mup_width_multiplier": 24.0,
|
| 86 |
+
"final_logit_softcapping": null,
|
| 87 |
+
"swa_head_dim": 128,
|
| 88 |
+
"swa_num_attention_heads": 64,
|
| 89 |
+
"swa_num_key_value_heads": 16,
|
| 90 |
+
"sliding_window_size": 512,
|
| 91 |
+
"n_routed_experts": 256,
|
| 92 |
+
"num_experts_per_tok": 6,
|
| 93 |
+
"n_shared_experts": 2,
|
| 94 |
+
"shared_expert_sink": true,
|
| 95 |
+
"dense_intermediate_size": 24576,
|
| 96 |
+
"intermediate_size": 3072,
|
| 97 |
+
"route_scale": 8.0,
|
| 98 |
+
"use_gate_bias": true,
|
| 99 |
+
"gate_activation": "sigmoid",
|
| 100 |
+
"norm_after_topk": true,
|
| 101 |
+
"use_global_scale": true
|
| 102 |
+
},
|
| 103 |
+
"audio_config": {
|
| 104 |
+
"decoder_dmodel": 6144,
|
| 105 |
+
"n_mel_bins": 80,
|
| 106 |
+
"mel_vocab_size": 16,
|
| 107 |
+
"bias": false,
|
| 108 |
+
"dmel_min_value": -7.0,
|
| 109 |
+
"dmel_max_value": 2.0,
|
| 110 |
+
"use_audio_norm": true,
|
| 111 |
+
"audio_mode": "dmel"
|
| 112 |
+
},
|
| 113 |
+
"vision_config": {
|
| 114 |
+
"vision_encoder_type": "hmlp",
|
| 115 |
+
"decoder_dmodel": 6144,
|
| 116 |
+
"patch_size": 40,
|
| 117 |
+
"temporal_patch_size": 2,
|
| 118 |
+
"n_channels": 3,
|
| 119 |
+
"n_layers": 4,
|
| 120 |
+
"use_vision_norm": true
|
| 121 |
+
},
|
| 122 |
+
"mtp_config": {
|
| 123 |
+
"num_nextn_predict_layers": 8,
|
| 124 |
+
"chain_hidden_post_norm": false,
|
| 125 |
+
"local_layer_ids": [
|
| 126 |
+
0,
|
| 127 |
+
2,
|
| 128 |
+
4,
|
| 129 |
+
5,
|
| 130 |
+
6,
|
| 131 |
+
7
|
| 132 |
+
]
|
| 133 |
+
}
|
| 134 |
+
}
|
model-00001-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c388741a7b7ed25168869b71c82b6c7756ad459a8aa0b39b83b10ab8489a3ec
|
| 3 |
+
size 19981728408
|
model-00002-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e574d46e46e4e38b001854fa26fb690f03fa9981a866a4275939f89a92e8170
|
| 3 |
+
size 10551335256
|
model-00003-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06fdee46007c3f4ba74b29aad147e697e35dd0aeeb73240aa2cfb924e181b66f
|
| 3 |
+
size 19793037628
|
model-00004-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fcc532de433b19dd25cd87e099c3c9f12ef02bb7ef0240aeb2a8e97efd9b3d5
|
| 3 |
+
size 19554020792
|
model-00005-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5be72f83b0e75b0efaa00eb529ee2326ec1338c9c007ac9344817b2d1a60a500
|
| 3 |
+
size 19402851712
|
model-00006-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70c922e6066b5cde60e36b2841dfeed6f8e128170827d58b3342a2dadcea7e09
|
| 3 |
+
size 19632630372
|
model-00007-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68cbd6ff4319bbe420972ffa1068c1050113a877b0d8cf71b11427f37d413c25
|
| 3 |
+
size 19528890012
|
model-00008-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d93c3c5e76e34caa49a11870ee39197f5b939a9494162bc4ab92137cc0e52476
|
| 3 |
+
size 19327352992
|
model-00009-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99499011c6b4351d1605d81abce1b423e6da6dc419618fd27c0ef8ba3661e9db
|
| 3 |
+
size 9817920224
|
model-00010-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b1cf627b6cf63500bf1424068a2db1493ce8c58852f692644b6b866331a5825
|
| 3 |
+
size 19579378432
|
model-00011-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:130bf8cf37a4282d4a150973c699ad22786c5e19a870e3252c576369a5f4702c
|
| 3 |
+
size 19985018028
|
model-00012-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:263060235dc39041292b4c9f9b617f025e290cd9cd3e71d5ef37a17f75377ab4
|
| 3 |
+
size 19327418768
|
model-00013-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3bc3a53ea5c17f3b32db1878cbc9ae1cc2892985fd4cfb6f0782b3b9f64246a
|
| 3 |
+
size 9726673820
|
model-00014-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9473d1ca561e6d0c6bd885a0659dd1acba9279574f7362ecb45c4e61a2c7ece
|
| 3 |
+
size 19327352992
|
model-00015-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:468c392ae2f296ed853e8534f2afd1d306d792b95a1dc2dd56ab8a3a1122665a
|
| 3 |
+
size 19431186824
|
model-00016-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c25da56bd3bf2aeb8865fc6105c63d1ae4d7f5cbd7bc766ad6181dc75bd479e1
|
| 3 |
+
size 19657736184
|
model-00017-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9c9d7e1b787d8f3b795deaf7c5ed5b97b3c84ecac2f98093357e6fd8c2918e9
|
| 3 |
+
size 9776935416
|
model-00018-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34f31b3d31f635358faf23eeeeaf31464a838e1b621723553622acbdbe46d8dd
|
| 3 |
+
size 19692415768
|
model-00019-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3db4a1ba8d71dbebe42a05b026ccd541ddfb07325a6984a59ec483593537c9fc
|
| 3 |
+
size 9663676576
|
model-00020-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca12bcd167e668c4e622823b6e2096fb5d8e0829a26e911e56c13addcfe98b6f
|
| 3 |
+
size 19648395960
|
model-00021-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1f90bd5513675d0fa8be2bf9042c37546c6243a30cc99d6ed6a21044f8d5626
|
| 3 |
+
size 19931609292
|
model-00022-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:967b38c7b9ecbab4f3c2fcbad4f692a01a5e31a8dc040978a33ed48cda20e8b1
|
| 3 |
+
size 10220554640
|
model-00023-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c07b7c008918c05acdee9ad11bb0af2c5bf559e84e2cb5101babf6e5486a46e
|
| 3 |
+
size 19758588104
|
model-00024-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8f6bd899184c553190b6a86a8831883be6b6a641e505553d00e6efe39ddb365
|
| 3 |
+
size 19465885568
|
model-00025-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17fb32b0a5659dbaa888b4ed8478993dd81796f777e8f59a286780e4fbe5a510
|
| 3 |
+
size 19730144072
|
model-00026-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:05592903630c933518b18afdafd5af2f9508c41af90749d24daed8074b9be1bb
|
| 3 |
+
size 19997582112
|
model-00027-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e77b18cf34b4d82de562f8f3f4d6f3617fb1804c625a73eebd33b4cb18291104
|
| 3 |
+
size 19453251400
|
model-00028-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00f9a91b444a604ca48dcec947c35e86f16e8f89201e1a806c8570c56b193b53
|
| 3 |
+
size 19783587800
|
model-00029-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8d969ea57bd4adfd66064dfa9373d423d03fe8c0b8e2b7d746599436030acd4
|
| 3 |
+
size 19629359496
|
model-00030-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cce7322e73a13dd3122500f585651d832d67ddc0e0136657c8d7270e9213f384
|
| 3 |
+
size 19339952512
|
model-00031-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:639b6a16bcea19ecfd6e459c9d00c8038b49a8df88b4645c7304b98137b8f031
|
| 3 |
+
size 10044812176
|
model-00032-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38dd3294bb46228e9810276b4340b706f9951103990920f77f9ea88e8825d425
|
| 3 |
+
size 19856191444
|
model-00033-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24ccc4eabdc4316eaaa7cb85f384bf29540832cd0a759c4ff1ce83e57c79c92a
|
| 3 |
+
size 19481597940
|
model-00034-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:233192acd04dacc59ffe46f6e014747b9c0eb5cbfdf8894edda61123b7cfc4f5
|
| 3 |
+
size 19516114984
|
model-00035-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6440b8a8692961ba5e54cdd2597020e4f7bccfdd0aa9020a120314c31eb6b4c
|
| 3 |
+
size 19339985288
|
model-00036-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6132edf471e24b19ab8ad3497a34f420292810aee838a46adb4be8a572ffc115
|
| 3 |
+
size 19941018504
|
model-00037-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c01176c8419efc58f1aa249a3536fa2aec98483f4da81ce3101fadc2c505242
|
| 3 |
+
size 19930267592
|
model-00038-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbcdc896300ee69280c65b751cbd652c7ed94e9f8091b3cd8d14fc8b07392202
|
| 3 |
+
size 19402851820
|
model-00039-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d2456e7b9baf399707632f684ffe47f1658c749a02821ba3a20c560d915f693
|
| 3 |
+
size 19403074192
|
model-00040-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a50326d2a5e0dd6815d39e00d2e7e4edeb7eb9cf0cdd5ee85028668981b6097
|
| 3 |
+
size 19730060736
|
model-00041-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c2d086d21f903bf245210cf293d6ffdc24f4da99eb37db92283d8f1d9585ace
|
| 3 |
+
size 19541457616
|
model-00042-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bd33ab40986b7b72489fa550a5f228e4a5a469625386e93a167b1c2a0d3ec7c
|
| 3 |
+
size 19915878560
|
model-00043-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e0a1e4c835f2554426a8042202d2b579bce801b4dd69eb5a339acbb18213303
|
| 3 |
+
size 19569714552
|
model-00044-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46053daa0b51c009187cd0dd331e9989ff2a062290c6216987131fd085aa82bb
|
| 3 |
+
size 12996059772
|
model-00045-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79448cab9cd442ae58088c04ed28211976109e093c713e6e4d48c22e3c77c08e
|
| 3 |
+
size 19912555768
|
model-00046-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11125c58e321ef08f1eb1f7ea800ba03c5681c061b7af353e2df4dc047449c3c
|
| 3 |
+
size 11208530760
|
model-00047-of-00108.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:424a1d85c9f8782e3370dbec391359641503e31e9491de5e4938bae6c0c1f31b
|
| 3 |
+
size 19327369616
|