Improve metadata and add GitHub link for Hulu-Med model card
Browse filesThis PR enhances the model card for Hulu-Med by:
* Replacing the `tasks` metadata key with `pipeline_tag: image-text-to-text` for consistency with Hugging Face conventions.
* Adding `library_name: transformers` metadata, as evidenced by the `transformers` imports in the provided Python code snippets, to enable the automated usage widget on the Hub.
* Populating the `tags` field with descriptive keywords such as `medical`, `multimodal`, `vision-language-model`, `image-to-text`, `video-understanding`, `3d-understanding`, `qwen`, and `pytorch` for improved discoverability.
* Adding a GitHub badge to the top of the model card content for direct access to the code repository.
* Correcting the `git clone` URL in the installation instructions from a placeholder to the actual repository URL (`https://github.com/ZJUI-AI4H/Hulu-Med.git`).
These updates aim to provide more accurate and comprehensive information, making the model easier to find and use.
|
@@ -1,10 +1,18 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
frameworks:
|
| 4 |
-
- pytorch
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
- image-text-to-text
|
| 8 |
---
|
| 9 |
|
| 10 |
<div style="display: flex; align-items: center; justify-content: center;">
|
|
@@ -18,6 +26,7 @@ tasks:
|
|
| 18 |
[](https://huggingface.co/ZJU-AI4H/Hulu-Med)
|
| 19 |
[](https://modelscope.cn/models/Med-Team/Hulu-Med)
|
| 20 |
[](LICENSE)
|
|
|
|
| 21 |
|
| 22 |
[๐ Paper](http://arxiv.org/abs/2510.08668) | [๐ค Hulu-Med-7B](https://huggingface.co/ZJU-AI4H/Hulu-Med-7B) |[๐ค Hulu-Med-14B](https://huggingface.co/ZJU-AI4H/Hulu-Med-14B) |[๐ค Hulu-Med-32B](https://huggingface.co/ZJU-AI4H/Hulu-Med-32B) | [๐ฎ ModelScope Models](https://modelscope.cn/models/Med-Team/Hulu-Med) | [๐ Demo](#demo)
|
| 23 |
|
|
@@ -127,7 +136,7 @@ We provide three model variants with different parameter scales:
|
|
| 127 |
## ๐ ๏ธ Installation
|
| 128 |
```bash
|
| 129 |
# Clone the repository
|
| 130 |
-
git clone https://github.com/
|
| 131 |
cd Hulu-Med
|
| 132 |
# Create conda environment
|
| 133 |
conda create -n hulumed python=3.10
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- medical
|
| 5 |
+
- multimodal
|
| 6 |
+
- vision-language-model
|
| 7 |
+
- image-to-text
|
| 8 |
+
- video-understanding
|
| 9 |
+
- 3d-understanding
|
| 10 |
+
- qwen
|
| 11 |
+
- pytorch
|
| 12 |
frameworks:
|
| 13 |
+
- pytorch
|
| 14 |
+
pipeline_tag: image-text-to-text
|
| 15 |
+
library_name: transformers
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
<div style="display: flex; align-items: center; justify-content: center;">
|
|
|
|
| 26 |
[](https://huggingface.co/ZJU-AI4H/Hulu-Med)
|
| 27 |
[](https://modelscope.cn/models/Med-Team/Hulu-Med)
|
| 28 |
[](LICENSE)
|
| 29 |
+
[](https://github.com/ZJUI-AI4H/Hulu-Med)
|
| 30 |
|
| 31 |
[๐ Paper](http://arxiv.org/abs/2510.08668) | [๐ค Hulu-Med-7B](https://huggingface.co/ZJU-AI4H/Hulu-Med-7B) |[๐ค Hulu-Med-14B](https://huggingface.co/ZJU-AI4H/Hulu-Med-14B) |[๐ค Hulu-Med-32B](https://huggingface.co/ZJU-AI4H/Hulu-Med-32B) | [๐ฎ ModelScope Models](https://modelscope.cn/models/Med-Team/Hulu-Med) | [๐ Demo](#demo)
|
| 32 |
|
|
|
|
| 136 |
## ๐ ๏ธ Installation
|
| 137 |
```bash
|
| 138 |
# Clone the repository
|
| 139 |
+
git clone https://github.com/ZJUI-AI4H/Hulu-Med.git
|
| 140 |
cd Hulu-Med
|
| 141 |
# Create conda environment
|
| 142 |
conda create -n hulumed python=3.10
|