CoolFace
Modelpublic

BLIP3o/BLIP3o-Model-4B

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
14likes609downloads
README.md43 linesDownload Raw Back to root
1---2language:3- en4license: apache-2.05---6This is BLIP3o-4B checkpoint trained on the **open source** data.7 8 9| Model               | Pretrain Data                                             | GenEval | DBP    | WISE |10|---------------------|-----------------------------------------------------------|---------|--------|------|11| 4B (open source)    | 30 million open-source data                           | 0.81    | 79.36  | 0.50 |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### Download17 18```19from huggingface_hub import snapshot_download20snapshot_download(21    repo_id="BLIP3o/BLIP3o-Model-4B",22    repo_type="model"23)24```25 26Clone the repo (if you haven’t already) and install the environment:27 28```29git clone https://github.com/JiuhaiChen/BLIP3o.git30```31 32Change to the demo folder:33 34```35cd gradio36```37 38Launch with your model path:39 40```41python app.py /path/to/your/model42```43