prince-canuma commited on
Commit
4eddfba
1 Parent(s): 63f44c5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - llava
7
+ - multimodal
8
+ - phi-mini-3
9
+ - mlx
10
+ ---
11
+
12
+ # mlx-community/llava-phi-3-mini-8bit
13
+ This model was converted to MLX format from [`qnguyen3/nanoLLaVAxtuner/llava-phi-3-mini-hf`]() using mlx-vllm version **0.0.3**.
14
+ Refer to the [original model card](xtuner/llava-phi-3-mini-hf) for more details on the model.
15
+ ## Use with mlx
16
+
17
+ ```bash
18
+ pip install -U mlx-vlm
19
+ ```
20
+
21
+ ```bash
22
+ python -m mlx_vlm.generate --model mlx-community/llava-phi-3-mini-8bit \
23
+ --prompt "what are these?" --image "http://images.cocodataset.org/val2017/000000039769.jpg" \
24
+ --max-tokens 100 --temp 0.0
25
+ ```