ZentraAI commited on
Commit
4cc2cc3
·
verified ·
1 Parent(s): 03030ad

docs: remove em dashes from the model card

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -20,13 +20,13 @@ pipeline_tag: text-generation
20
  inference: false
21
  ---
22
 
23
- # Quill on-device dictation cleanup models
24
 
25
  **Quill** is a family of small language models that turn raw speech-to-text
26
- output into clean, written text **entirely on your own device**. It removes
27
  filler words (*um*, *uh*, *like*, *you know*), fixes punctuation and
28
  capitalization, repairs spoken self-corrections and false starts, and collapses
29
- the stutters and repeats that dictation produces without changing your words
30
  or sending anything to the cloud.
31
 
32
  Quill is the cleanup stage of **[Quobi](https://huggingface.co/quobi)**, a
@@ -43,7 +43,7 @@ Quill rewrites that into what you actually meant to write:
43
 
44
  > **"So I was thinking maybe we could meet up at three."**
45
 
46
- It is **not** a chatbot and not an instruction-following assistant it does one
47
  job: clean dictated text. Feeding it questions or commands will not get answers;
48
  it will just clean the text.
49
 
@@ -52,7 +52,7 @@ it will just clean the text.
52
  Quill is a fine-tune of **[Qwen3.5](https://huggingface.co/Qwen)** by the Qwen
53
  team (Alibaba), used under the **Apache 2.0** license. Qwen3.5 is a hybrid
54
  architecture interleaving **Mamba-2 / state-space (SSM)** layers with periodic
55
- full-attention layers, which makes the small sizes fast and memory-light
56
  well suited to on-device, low-latency cleanup. All credit for the base models
57
  goes to the Qwen team; Quill only adds task-specific fine-tuning.
58
 
@@ -66,7 +66,7 @@ goes to the Qwen team; Quill only adds task-specific fine-tuning.
66
 
67
  | Tier | Best for | Behavior |
68
  |---|---|---|
69
- | **0.8B** | Phones and any CPU (recommended default) | **Verbatim** faithful cleanup, no rephrasing |
70
  | **2B** | Mid-range machines / a modest GPU | Verbatim + light tidying |
71
  | **4B** | Desktops with a GPU | Verbatim + tidying + light formatting |
72
 
@@ -82,7 +82,7 @@ the larger tiers take on more rewriting and structure.
82
  llama-server -m quill-0.8b-Q4_K_M.gguf --host 127.0.0.1 --port 8080 -ngl 99
83
  ```
84
 
85
- **Prompt format important.** Use ChatML with the assistant turn pre-seeded
86
  with an **empty think block** so the model does not emit chain-of-thought:
87
 
88
  ```
@@ -99,7 +99,7 @@ yeah so um the meeting is gonna be like at uh three thirty tomorrow i think<|im_
99
 
100
  → **"The meeting is at 3:30 tomorrow."**
101
 
102
- > ⚠️ Do **not** pass `--jinja` it re-enables chain-of-thought leakage. Use the
103
  > raw prompt above (or the `/completion` endpoint) with the pre-seeded empty
104
  > `<think></think>` block. Greedy decoding (`temperature = 0`) is recommended.
105
 
 
20
  inference: false
21
  ---
22
 
23
+ # Quill: on-device dictation cleanup models
24
 
25
  **Quill** is a family of small language models that turn raw speech-to-text
26
+ output into clean, written text, **entirely on your own device**. It removes
27
  filler words (*um*, *uh*, *like*, *you know*), fixes punctuation and
28
  capitalization, repairs spoken self-corrections and false starts, and collapses
29
+ the stutters and repeats that dictation produces, without changing your words
30
  or sending anything to the cloud.
31
 
32
  Quill is the cleanup stage of **[Quobi](https://huggingface.co/quobi)**, a
 
43
 
44
  > **"So I was thinking maybe we could meet up at three."**
45
 
46
+ It is **not** a chatbot and not an instruction-following assistant. It does one
47
  job: clean dictated text. Feeding it questions or commands will not get answers;
48
  it will just clean the text.
49
 
 
52
  Quill is a fine-tune of **[Qwen3.5](https://huggingface.co/Qwen)** by the Qwen
53
  team (Alibaba), used under the **Apache 2.0** license. Qwen3.5 is a hybrid
54
  architecture interleaving **Mamba-2 / state-space (SSM)** layers with periodic
55
+ full-attention layers, which makes the small sizes fast and memory-light,
56
  well suited to on-device, low-latency cleanup. All credit for the base models
57
  goes to the Qwen team; Quill only adds task-specific fine-tuning.
58
 
 
66
 
67
  | Tier | Best for | Behavior |
68
  |---|---|---|
69
+ | **0.8B** | Phones and any CPU (recommended default) | **Verbatim**: faithful cleanup, no rephrasing |
70
  | **2B** | Mid-range machines / a modest GPU | Verbatim + light tidying |
71
  | **4B** | Desktops with a GPU | Verbatim + tidying + light formatting |
72
 
 
82
  llama-server -m quill-0.8b-Q4_K_M.gguf --host 127.0.0.1 --port 8080 -ngl 99
83
  ```
84
 
85
+ **Prompt format (important).** Use ChatML with the assistant turn pre-seeded
86
  with an **empty think block** so the model does not emit chain-of-thought:
87
 
88
  ```
 
99
 
100
  → **"The meeting is at 3:30 tomorrow."**
101
 
102
+ > ⚠️ Do **not** pass `--jinja`. It re-enables chain-of-thought leakage. Use the
103
  > raw prompt above (or the `/completion` endpoint) with the pre-seeded empty
104
  > `<think></think>` block. Greedy decoding (`temperature = 0`) is recommended.
105