Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`openai/clip-vit-large-patch14`](https://huggingface.co/openai/clip-vit-large-patch14) as a `base_model` field, situated in the `YAML` block of your model's `README.md`.
How did we find this information? We performed a regular expression match on your `README.md` file to determine the connection.
**Why add this?** Enhancing your model's metadata in this way:
- **Boosts Discoverability** - It becomes straightforward to trace the relationships between various models on the Hugging Face Hub.
- **Highlights Impact** - It showcases the contributions and influences different models have within the community.
For a hands-on example of how such metadata can play a pivotal role in mapping model connections, take a look at [librarian-bots/base_model_explorer](https://huggingface.co/spaces/librarian-bots/base_model_explorer).
This PR comes courtesy of [Librarian Bot](https://huggingface.co/librarian-bot). If you have any feedback, queries, or need assistance, please don't hesitate to reach out to [@davanstrien](https://huggingface.co/davanstrien).
If you want to automatically add `base_model` metadata to more of your modes you can use the [Librarian Bot](https://huggingface.co/librarian-bot) [Metadata Request Service](https://huggingface.co/spaces/librarian-bots/metadata_request_service)!
@@ -1,31 +1,28 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: gpl-3.0
|
|
|
3 |
tags:
|
4 |
- clip
|
5 |
- vision
|
6 |
- medical
|
7 |
- bert
|
8 |
-
language:
|
9 |
-
- en
|
10 |
-
library_name: transformers
|
11 |
pipeline_tag: zero-shot-image-classification
|
12 |
widget:
|
13 |
-
- src:
|
14 |
-
https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_09402.jpg
|
15 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
16 |
example_title: Abdomen CT Scan
|
17 |
-
- src:
|
18 |
-
https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_00319.jpg
|
19 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
20 |
example_title: Chest X-Ray
|
21 |
-
- src:
|
22 |
-
https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_00016.jpg
|
23 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
24 |
example_title: MRI
|
25 |
-
- src:
|
26 |
-
https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_02259.jpg
|
27 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
28 |
example_title: Ultrasound
|
|
|
29 |
---
|
30 |
|
31 |
# RCLIP (Clip model fine-tuned on radiology images and their captions)
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
license: gpl-3.0
|
5 |
+
library_name: transformers
|
6 |
tags:
|
7 |
- clip
|
8 |
- vision
|
9 |
- medical
|
10 |
- bert
|
|
|
|
|
|
|
11 |
pipeline_tag: zero-shot-image-classification
|
12 |
widget:
|
13 |
+
- src: https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_09402.jpg
|
|
|
14 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
15 |
example_title: Abdomen CT Scan
|
16 |
+
- src: https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_00319.jpg
|
|
|
17 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
18 |
example_title: Chest X-Ray
|
19 |
+
- src: https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_00016.jpg
|
|
|
20 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
21 |
example_title: MRI
|
22 |
+
- src: https://huggingface.co/spaces/kaveh/radiology-image-retrieval/resolve/main/images/ROCO_02259.jpg
|
|
|
23 |
candidate_labels: Chest X-Ray, Brain MRI, Abdomen CT Scan, Ultrasound, OPG
|
24 |
example_title: Ultrasound
|
25 |
+
base_model: openai/clip-vit-large-patch14
|
26 |
---
|
27 |
|
28 |
# RCLIP (Clip model fine-tuned on radiology images and their captions)
|