TheCluster commited on
Commit
1594b8f
·
verified ·
1 Parent(s): ad4f0c4

Update README.md

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