jiuhai commited on
Commit
ab63487
·
verified ·
1 Parent(s): a3ebb2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -12,3 +12,20 @@ This is BLIP3o-4B checkpoint trained on the **open source** data.
12
  | 8B (open source) | 30 million open-source data | 0.83 | 80.73 | 0.52 |
13
  | 8B (paper reported) | 30 million open-source + 30 million proprietary data | 0.84 | 81.60 | 0.62 |
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  | 8B (open source) | 30 million open-source data | 0.83 | 80.73 | 0.52 |
13
  | 8B (paper reported) | 30 million open-source + 30 million proprietary data | 0.84 | 81.60 | 0.62 |
14
 
15
+
16
+ ### Download
17
+
18
+ ```python
19
+ from huggingface_hub import snapshot_download
20
+
21
+ snapshot_download(
22
+ repo_id="BLIP3o/BLIP3o-Model-4B",
23
+ repo_type="model"
24
+ )
25
+ ```
26
+
27
+ You can use gradio demo: https://github.com/JiuhaiChen/BLIP3o/tree/main/gradio
28
+
29
+ ```python
30
+ python app.py /your/model/path/
31
+ ```