TheCluster commited on
Commit
8c28cb6
·
verified ·
1 Parent(s): 934df21

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -3
README.md CHANGED
@@ -1,3 +1,38 @@
1
- ---
2
- license: gemma
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ base_model:
4
+ - google/gemma-3-27b-it
5
+ - nidum/Nidum-gemma-3-27B-it-Uncensored
6
+ pipeline_tag: image-text-to-text
7
+ tags:
8
+ - chat
9
+ - mlx
10
+ - uncensored
11
+ - apple
12
+ - 6bit
13
+ library_name: mlx
14
+ ---
15
+ # Gemma-3-27B Instruct Uncensored 6-bit MLX
16
+ Uncensored version of **Gemma 3 27B**.
17
+
18
+ This model was converted to MLX format from [`nidum/Nidum-gemma-3-27B-it-Uncensored`]() using mlx-vlm version **0.1.19**.
19
+
20
+ Refer to the [original model card](https://huggingface.co/google/gemma-3-27b-it) and [uncensored model](https://huggingface.co/nidum/Nidum-gemma-3-27B-it-Uncensored) for more details on the model.
21
+
22
+
23
+ ## Technical Details
24
+
25
+ Supports a context length of 128k tokens, with a max output of 8192.
26
+
27
+ Multimodal supporting images normalized to 896 x 896 resolution.
28
+
29
+
30
+ ## Use with mlx
31
+
32
+ ```bash
33
+ pip install -U mlx-vlm
34
+ ```
35
+
36
+ ```bash
37
+ python -m mlx_vlm.generate --model TheCluster/gemma-3-27b-it-uncensored-6bit --max-tokens 128 --temperature 0.0 --prompt "Describe this image." --image <path_to_image>
38
+ ```