Image-Text-to-Text
MLX
Safetensors
inkling_mm_model
vision
Mixture of Experts
conversational
Eval Results
2-bit
Instructions to use ToPo-ToPo/Inkling-Small-mlx-2bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use ToPo-ToPo/Inkling-Small-mlx-2bit with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("ToPo-ToPo/Inkling-Small-mlx-2bit") config = load_config("ToPo-ToPo/Inkling-Small-mlx-2bit") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use ToPo-ToPo/Inkling-Small-mlx-2bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "ToPo-ToPo/Inkling-Small-mlx-2bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ToPo-ToPo/Inkling-Small-mlx-2bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent
How to use ToPo-ToPo/Inkling-Small-mlx-2bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "ToPo-ToPo/Inkling-Small-mlx-2bit"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default ToPo-ToPo/Inkling-Small-mlx-2bit
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ToPo-ToPo/Inkling-Small-mlx-2bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "ToPo-ToPo/Inkling-Small-mlx-2bit"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "ToPo-ToPo/Inkling-Small-mlx-2bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Reconvert with mlx-vlm 0.6.9 (official config schema; restores MoE global_scale/gate.bias dropped by the 0.6.7 conversion)
Browse files- README.md +27 -48
- config.json +9 -9
- model-00001-of-00017.safetensors +2 -2
- model-00002-of-00017.safetensors +2 -2
- model-00003-of-00017.safetensors +2 -2
- model-00004-of-00017.safetensors +2 -2
- model-00005-of-00017.safetensors +2 -2
- model-00006-of-00017.safetensors +2 -2
- model-00007-of-00017.safetensors +2 -2
- model-00008-of-00017.safetensors +2 -2
- model-00009-of-00017.safetensors +2 -2
- model-00010-of-00017.safetensors +2 -2
- model-00011-of-00017.safetensors +2 -2
- model-00012-of-00017.safetensors +2 -2
- model-00013-of-00017.safetensors +2 -2
- model-00014-of-00017.safetensors +2 -2
- model-00015-of-00017.safetensors +2 -2
- model-00016-of-00017.safetensors +2 -2
- model-00017-of-00017.safetensors +2 -2
- model.safetensors.index.json +0 -0
- processor_config.json +2 -22
- tokenizer_config.json +1 -1
README.md
CHANGED
|
@@ -17,53 +17,26 @@ text + image + audio in, text out.
|
|
| 17 |
|
| 18 |
See also: [`ToPo-ToPo/Inkling-Small-mlx-4bit`](https://huggingface.co/ToPo-ToPo/Inkling-Small-mlx-4bit).
|
| 19 |
|
| 20 |
-
##
|
| 21 |
-
- Source: [`thinkingmachines/Inkling-Small`](https://huggingface.co/thinkingmachines/Inkling-Small) (license: apache-2.0, bf16, 531.9 GB)
|
| 22 |
-
- Tool: `mlx-vlm 0.6.7` — `mlx_vlm.convert --hf-path <staged> --mlx-path . -q --q-bits 2 --q-group-size 64`
|
| 23 |
-
- Effective: **2.506 bits/weight** (77 GiB on disk, ~83.5 GB peak RSS at inference)
|
| 24 |
-
|
| 25 |
-
## Config translation (already applied here)
|
| 26 |
-
|
| 27 |
-
The official `config.json` cannot be loaded by `mlx-vlm` as published — its schema uses different key names
|
| 28 |
-
than `mlx_vlm.models.inkling` expects. This repo ships the translated config, so no action is needed:
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
| `text_config.intermediate_size` | 2048 (expert width) | 16384 (dense width) |
|
| 34 |
-
| `text_config.moe_intermediate_size` | — (was `intermediate_size`) | 2048 |
|
| 35 |
-
| `vision_config.text_hidden_size` | `decoder_dmodel` | 4096 |
|
| 36 |
-
| `audio_config.text_hidden_size` | `decoder_dmodel` | 4096 |
|
| 37 |
-
| `vision_config.num_channels` | `n_channels` | 3 |
|
| 38 |
-
| `tokenizer_config.pad_token` / `eos_token` | unset | `<\|endoftext\|>` / `<\|content_model_end_sampling\|>` |
|
| 39 |
-
|
| 40 |
-
`image_token_id` / `audio_token_id` are left unset so that mlx-vlm's defaults (200054 / 200053) apply —
|
| 41 |
-
those are the placeholders `InklingProcessor` actually emits.
|
| 42 |
-
|
| 43 |
-
## Loader shim (required)
|
| 44 |
-
|
| 45 |
-
`mlx-vlm` 0.6.7 and 0.6.8 need two patches at runtime for any Inkling checkpoint. Apply them before `load()`:
|
| 46 |
|
| 47 |
```python
|
| 48 |
-
from mlx_vlm
|
| 49 |
-
|
| 50 |
-
from mlx_vlm import prompt_utils
|
| 51 |
-
|
| 52 |
-
# 1. models/inkling does not re-export its sub-config classes, which the generic
|
| 53 |
-
# loader fetches with getattr -> AttributeError on load.
|
| 54 |
-
for name in ("TextConfig", "VisionConfig", "AudioConfig"):
|
| 55 |
-
setattr(inkling, name, getattr(inkling_config, name))
|
| 56 |
-
|
| 57 |
-
# 2. prompt_utils.MODEL_CONFIG has no "inkling" entry, so apply_chat_template treats
|
| 58 |
-
# the model as text-only and drops image/audio parts.
|
| 59 |
-
prompt_utils.MODEL_CONFIG.setdefault("inkling", prompt_utils.MessageFormat.LIST_WITH_IMAGE_FIRST)
|
| 60 |
```
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
`
|
| 66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
## Reasoning effort
|
| 69 |
|
|
@@ -71,11 +44,17 @@ The chat template always injects a `Thinking effort level:` system message (defa
|
|
| 71 |
with the OpenAI-compatible `reasoning_effort` — `"none"` / `"minimal"` / `"low"` / `"medium"` / `"high"` /
|
| 72 |
`"max"`, or a float in `[0.0, 0.99]`. `"none"` disables thinking entirely.
|
| 73 |
|
| 74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
|
| 76 |
-
|
| 77 |
-
from mlx_vlm import load, generate
|
| 78 |
-
model, processor = load("ToPo-ToPo/Inkling-Small-mlx-2bit") # apply the shim above first
|
| 79 |
-
```
|
| 80 |
|
| 81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
See also: [`ToPo-ToPo/Inkling-Small-mlx-4bit`](https://huggingface.co/ToPo-ToPo/Inkling-Small-mlx-4bit).
|
| 19 |
|
| 20 |
+
## Requires mlx-vlm >= 0.6.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
+
0.6.9 is the first release whose `models/inkling` can load an official Inkling checkpoint through the
|
| 23 |
+
public loader, and the first that implements the MoE `global_scale` / `gate.bias` tensors. On 0.6.7 / 0.6.8
|
| 24 |
+
this repo will not load.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
```python
|
| 27 |
+
from mlx_vlm import load, generate
|
| 28 |
+
model, processor = load("ToPo-ToPo/Inkling-Small-mlx-2bit")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
```
|
| 30 |
|
| 31 |
+
The config is the **official schema, unmodified** — no key translation and no loader patches are needed.
|
| 32 |
+
|
| 33 |
+
## Provenance (self-converted from official weights)
|
| 34 |
+
- Source: [`thinkingmachines/Inkling-Small`](https://huggingface.co/thinkingmachines/Inkling-Small) (license: apache-2.0, bf16, 531.9 GB)
|
| 35 |
+
- Tool: `mlx-vlm 0.6.9` — `mlx_vlm.convert --hf-path thinkingmachines/Inkling-Small --mlx-path . -q --q-bits 2 --q-group-size 64`
|
| 36 |
+
- Effective: **2.506 bits/weight** (77 GiB on disk)
|
| 37 |
+
- Only edit on top of the conversion: `pad_token` / `eos_token` added to `tokenizer_config.json`
|
| 38 |
+
(the official `TokenizersBackend` config sets neither, so transformers raises on any padded call).
|
| 39 |
+
Both point at existing ids — the vocabulary is unchanged.
|
| 40 |
|
| 41 |
## Reasoning effort
|
| 42 |
|
|
|
|
| 44 |
with the OpenAI-compatible `reasoning_effort` — `"none"` / `"minimal"` / `"low"` / `"medium"` / `"high"` /
|
| 45 |
`"max"`, or a float in `[0.0, 0.99]`. `"none"` disables thinking entirely.
|
| 46 |
|
| 47 |
+
When serving over `mlx_vlm.server`, note that Inkling wraps its answer in structural tokens
|
| 48 |
+
(`<|message_model|>`, `<|content_text|>`, `<|end_message|>`) which the server's fixed
|
| 49 |
+
`_CONTENT_MARKERS` list does not strip, and that its reasoning channel is
|
| 50 |
+
`<|content_thinking|>` … `<|end_message|><|message_model|>` rather than one of the built-in marker pairs.
|
| 51 |
+
Set `MLX_VLM_THINKING_START_TOKEN` / `MLX_VLM_THINKING_END_TOKEN` accordingly and strip the structural
|
| 52 |
+
tokens, or the reasoning and those markers end up in `content`.
|
| 53 |
|
| 54 |
+
## Revision history
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
+
- **2026-08-04** — reconverted with mlx-vlm 0.6.9. The previous upload had been converted with 0.6.7,
|
| 57 |
+
whose `models/inkling` did not implement the MoE `mlp.global_scale` (50 keys) and `mlp.gate.bias`
|
| 58 |
+
(40 keys) present in the official checkpoint, so **those tensors were silently dropped**. It also
|
| 59 |
+
shipped a translated config (renamed `intermediate_size` / `dense_intermediate_size`, etc.) that 0.6.9
|
| 60 |
+
rejects. If you pulled this repo before this date, re-download it.
|
config.json
CHANGED
|
@@ -3,17 +3,17 @@
|
|
| 3 |
"InklingForConditionalGeneration"
|
| 4 |
],
|
| 5 |
"audio_config": {
|
|
|
|
| 6 |
"n_mel_bins": 80,
|
| 7 |
"mel_vocab_size": 16,
|
| 8 |
"bias": false,
|
| 9 |
"dmel_min_value": -7.0,
|
| 10 |
"dmel_max_value": 2.0,
|
| 11 |
"use_audio_norm": true,
|
| 12 |
-
"audio_mode": "dmel"
|
| 13 |
-
"text_hidden_size": 4096
|
| 14 |
},
|
| 15 |
"eos_token_id": 200006,
|
| 16 |
-
"model_type": "
|
| 17 |
"mtp_config": {
|
| 18 |
"num_nextn_predict_layers": 8,
|
| 19 |
"chain_hidden_post_norm": false,
|
|
@@ -104,21 +104,21 @@
|
|
| 104 |
"num_experts_per_tok": 6,
|
| 105 |
"n_shared_experts": 2,
|
| 106 |
"shared_expert_sink": true,
|
| 107 |
-
"
|
|
|
|
| 108 |
"route_scale": 8.0,
|
| 109 |
"use_gate_bias": true,
|
| 110 |
"gate_activation": "sigmoid",
|
| 111 |
"norm_after_topk": true,
|
| 112 |
-
"use_global_scale": true
|
| 113 |
-
"moe_intermediate_size": 2048
|
| 114 |
},
|
| 115 |
"vision_config": {
|
| 116 |
"vision_encoder_type": "hmlp",
|
|
|
|
| 117 |
"patch_size": 40,
|
| 118 |
"temporal_patch_size": 2,
|
|
|
|
| 119 |
"n_layers": 4,
|
| 120 |
-
"use_vision_norm": true
|
| 121 |
-
"num_channels": 3,
|
| 122 |
-
"text_hidden_size": 4096
|
| 123 |
}
|
| 124 |
}
|
|
|
|
| 3 |
"InklingForConditionalGeneration"
|
| 4 |
],
|
| 5 |
"audio_config": {
|
| 6 |
+
"decoder_dmodel": 4096,
|
| 7 |
"n_mel_bins": 80,
|
| 8 |
"mel_vocab_size": 16,
|
| 9 |
"bias": false,
|
| 10 |
"dmel_min_value": -7.0,
|
| 11 |
"dmel_max_value": 2.0,
|
| 12 |
"use_audio_norm": true,
|
| 13 |
+
"audio_mode": "dmel"
|
|
|
|
| 14 |
},
|
| 15 |
"eos_token_id": 200006,
|
| 16 |
+
"model_type": "inkling_mm_model",
|
| 17 |
"mtp_config": {
|
| 18 |
"num_nextn_predict_layers": 8,
|
| 19 |
"chain_hidden_post_norm": false,
|
|
|
|
| 104 |
"num_experts_per_tok": 6,
|
| 105 |
"n_shared_experts": 2,
|
| 106 |
"shared_expert_sink": true,
|
| 107 |
+
"dense_intermediate_size": 16384,
|
| 108 |
+
"intermediate_size": 2048,
|
| 109 |
"route_scale": 8.0,
|
| 110 |
"use_gate_bias": true,
|
| 111 |
"gate_activation": "sigmoid",
|
| 112 |
"norm_after_topk": true,
|
| 113 |
+
"use_global_scale": true
|
|
|
|
| 114 |
},
|
| 115 |
"vision_config": {
|
| 116 |
"vision_encoder_type": "hmlp",
|
| 117 |
+
"decoder_dmodel": 4096,
|
| 118 |
"patch_size": 40,
|
| 119 |
"temporal_patch_size": 2,
|
| 120 |
+
"n_channels": 3,
|
| 121 |
"n_layers": 4,
|
| 122 |
+
"use_vision_norm": true
|
|
|
|
|
|
|
| 123 |
}
|
| 124 |
}
|
model-00001-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab0b0bf0b51bbf38698cc48f4739a721e1a061d27a1d2e04eb1716f0351dbc1c
|
| 3 |
+
size 5187899756
|
model-00002-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a9f1a9c06c07e10f16bbb1a51ac3e6da07bd26383c84ea45e290fe20dc5b2c1
|
| 3 |
+
size 5365073637
|
model-00003-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf1b5c741a78af61110e77600ea0ad76db270e9ed3cd4476c3164a2ca6177e5a
|
| 3 |
+
size 4859913000
|
model-00004-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fae89354568e09d0cc59d1f9769e910c9465c9511932eb27e8108dfc667608ec
|
| 3 |
+
size 5365073701
|
model-00005-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4517d652f296829d17b6e3f99434bfdced96af73e315879da943a7b91461e320
|
| 3 |
+
size 4859913099
|
model-00006-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a218f6b938f2934d28ca2039e43bbb0fce598333ac5b4f62921414ea1a74879
|
| 3 |
+
size 5365057335
|
model-00007-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ec49a07dadf0f152180dc22b2397c4a7efd87bf3fad922e663de253a23378f8
|
| 3 |
+
size 4859929510
|
model-00008-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:490e72bee117d9a0e965c7132e37eea48524d2c57194204cbfbfb769c387104c
|
| 3 |
+
size 5365057329
|
model-00009-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb59a3de289772e49364d2f2eed7987a292453cde70ad4a763878cba930ef7d3
|
| 3 |
+
size 4859929496
|
model-00010-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16e61880f3d91e938ae69ee99e6a610f2e1a28e09356ce9b563668dd6c123c5a
|
| 3 |
+
size 5365057337
|
model-00011-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f71b52cde8b5745603854ceadf3ce11e9c24be187231d899e5727ece4751386
|
| 3 |
+
size 4859929506
|
model-00012-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:759f982406433526753a6900fdb51ce0094ef7e9233932a9a780661fd3284a93
|
| 3 |
+
size 5365057339
|
model-00013-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32d008bf36054dfde8c21980b2c16b77cf453aa52646b2783f39ab6a146aaf23
|
| 3 |
+
size 4859913141
|
model-00014-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58dc8f6cbcd31d90acac62e2a925f63b8bd75d6c6ecd4d34c46ed1e923b99c46
|
| 3 |
+
size 5365073676
|
model-00015-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db42e0267db293908fbaa136adce7be0ff3aceb48d6555e86c3486a2d8744b6e
|
| 3 |
+
size 4859913091
|
model-00016-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f28c04a2a8d978ad333343afb9d97293f0546b05eabb2d604bb8ef3350abf3fd
|
| 3 |
+
size 5365073726
|
model-00017-of-00017.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc68c5326ad5f94ea283c99e1f106ead41104f88d9afcded508bf8551c7b3455
|
| 3 |
+
size 478898863
|
model.safetensors.index.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
processor_config.json
CHANGED
|
@@ -3,25 +3,8 @@
|
|
| 3 |
"audio_token": "<|unused_200053|>",
|
| 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_bos_token": "<|content_image|>",
|
| 20 |
"image_processor": {
|
| 21 |
-
"do_convert_rgb": true,
|
| 22 |
-
"do_normalize": true,
|
| 23 |
-
"do_rescale": true,
|
| 24 |
-
"do_resize": true,
|
| 25 |
"image_mean": [
|
| 26 |
0.48145466,
|
| 27 |
0.4578275,
|
|
@@ -33,13 +16,10 @@
|
|
| 33 |
0.26130258,
|
| 34 |
0.27577711
|
| 35 |
],
|
| 36 |
-
"
|
| 37 |
"rescale_factor": 0.00392156862745098,
|
| 38 |
"rescale_image_max_upscaled_long_edge": 2048,
|
| 39 |
-
"
|
| 40 |
-
"height": 40,
|
| 41 |
-
"width": 40
|
| 42 |
-
}
|
| 43 |
},
|
| 44 |
"image_token": "<|unused_200054|>",
|
| 45 |
"num_dmel_bins": 16,
|
|
|
|
| 3 |
"audio_token": "<|unused_200053|>",
|
| 4 |
"dmel_max_value": 2.0,
|
| 5 |
"dmel_min_value": -7.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
"image_bos_token": "<|content_image|>",
|
| 7 |
"image_processor": {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
"image_mean": [
|
| 9 |
0.48145466,
|
| 10 |
0.4578275,
|
|
|
|
| 16 |
0.26130258,
|
| 17 |
0.27577711
|
| 18 |
],
|
| 19 |
+
"patch_size": 40,
|
| 20 |
"rescale_factor": 0.00392156862745098,
|
| 21 |
"rescale_image_max_upscaled_long_edge": 2048,
|
| 22 |
+
"temporal_patch_size": 2
|
|
|
|
|
|
|
|
|
|
| 23 |
},
|
| 24 |
"image_token": "<|unused_200054|>",
|
| 25 |
"num_dmel_bins": 16,
|
tokenizer_config.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
| 18 |
"eos_token": "<|content_model_end_sampling|>",
|
| 19 |
"fix_mistral_regex": false,
|
| 20 |
"is_local": true,
|
| 21 |
-
"local_files_only":
|
| 22 |
"message_model": "<|message_model|>",
|
| 23 |
"message_system": "<|message_system|>",
|
| 24 |
"message_tool": "<|message_tool|>",
|
|
|
|
| 18 |
"eos_token": "<|content_model_end_sampling|>",
|
| 19 |
"fix_mistral_regex": false,
|
| 20 |
"is_local": true,
|
| 21 |
+
"local_files_only": true,
|
| 22 |
"message_model": "<|message_model|>",
|
| 23 |
"message_system": "<|message_system|>",
|
| 24 |
"message_tool": "<|message_tool|>",
|