Update README.md

#1
by pcuenq HF Staff - opened
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -2,6 +2,29 @@
2
  language: en
3
  library_name: mlx
4
  pipeline_tag: image-text-to-text
 
5
  tags:
6
  - mlx
7
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  language: en
3
  library_name: mlx
4
  pipeline_tag: image-text-to-text
5
+ base_model: thinkingmachines/Inkling-Small
6
  tags:
7
  - mlx
8
  ---
9
+
10
+ # Inkling Small MXFP4
11
+
12
+ MXFP4 version of [thinkingmachines/Inkling-Small](https://huggingface.co/thinkingmachines/Inkling-Small).
13
+
14
+ This checkpoint uses less memory than [thinkingmachines/Inkling-Small-NVFP4](https://huggingface.co/thinkingmachines/Inkling-Small-NVFP4),
15
+ but quantizes more tensors to MXFP4. The official NVFP4 checkpoint, on the other hand, only applies 4-bit quantization to routed experts,
16
+ so quality should be better.
17
+
18
+ For the best quality, please run the official NVFP4 checkpoint directly with MLX, there's no need to convert:
19
+
20
+ ```bash
21
+ mlx_vlm.generate --prompt "who are you?" --model thinkingmachines/Inkling-Small-NVFP4
22
+ ```
23
+
24
+ Or, if you want to try the version in this repo (lower memory consumption, faster):
25
+
26
+ ```bash
27
+ mlx_vlm.generate --prompt "who are you?" --model mlx-community/Inkling-Small-mxfp4
28
+ ```
29
+
30
+ **Note**: please make sure you use the Inkling Small mlx-vlm PR.