CoolFace
Modelpublic

FreedomIntelligence/HuatuoGPT-Vision-7B

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
30likes701downloads
Model Card

<div align="center"> <h1> HuatuoGPT-Vision-7B </h1> </div>

<div align="center"> <a href="https://github.com/FreedomIntelligence/HuatuoGPT-Vision" target="blank">GitHub</a> | <a href="https://arxiv.org/abs/2406.19280" target="blank">Paper</a> </div>

<span id="Start">Introduction</span>

HuatuoGPT-Vision is a multimodal LLM for medical applications, built with the PubMedVision dataset. HuatuoGPT-Vision-7B is trained based on Qwen2-7B using the LLaVA-v1.5 architecture.

<span id="Start">Quick Start</span>

  1. 1.Get the model inference code from Github.
bash
git clone https://github.com/FreedomIntelligence/HuatuoGPT-Vision.git
  1. 1.Model inference
python
query = 'What does the picture show?'
image_paths = ['image_path1']

from cli import HuatuoChatbot
bot = HuatuoChatbot(huatuogpt_vision_model_path) # loads the model 
output = bot.inference(query, image_paths) # generates
print(output)  # Prints the model output

<span id="Start">Citation</span>

@misc{chen2024huatuogptvisioninjectingmedicalvisual,
      title={HuatuoGPT-Vision, Towards Injecting Medical Visual Knowledge into Multimodal LLMs at Scale}, 
      author={Junying Chen and Ruyi Ouyang and Anningzhe Gao and Shunian Chen and Guiming Hardy Chen and Xidong Wang and Ruifei Zhang and Zhenyang Cai and Ke Ji and Guangjun Yu and Xiang Wan and Benyou Wang},
      year={2024},
      eprint={2406.19280},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2406.19280}, 
}