Add `pipeline_tag` and `library_name` to model card
Browse filesThis PR enhances the model card by adding two important metadata tags:
- `pipeline_tag: ROBOTICS`: Ensures the model is discoverable under the appropriate task category on the Hugging Face Hub, improving its visibility for users interested in robotics applications.
- `library_name: transformers`: Explicitly declares compatibility with the Hugging Face Transformers library, as evidenced by the `transformers_version` in `config.json` and the naming conventions in `config.json` and `preprocessor_config.json`. This will enable the interactive "how to use" widget on the model page, providing convenient code snippets for easier adoption.
These additions enhance the model's visibility and usability on the Hugging Face Hub.
README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- fnlp/OmniAction-LIBERO
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
<div align="center">
|
|
@@ -60,5 +62,4 @@ If you find our paper and code useful in your research, please cite our paper.
|
|
| 60 |
archivePrefix={arXiv},
|
| 61 |
primaryClass={cs.RO},
|
| 62 |
}
|
| 63 |
-
```
|
| 64 |
-
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- fnlp/RoboOmni
|
| 4 |
datasets:
|
| 5 |
- fnlp/OmniAction-LIBERO
|
| 6 |
language:
|
| 7 |
- en
|
| 8 |
+
license: cc-by-nc-4.0
|
| 9 |
+
pipeline_tag: ROBOTICS
|
| 10 |
+
library_name: transformers
|
| 11 |
---
|
| 12 |
|
| 13 |
<div align="center">
|
|
|
|
| 62 |
archivePrefix={arXiv},
|
| 63 |
primaryClass={cs.RO},
|
| 64 |
}
|
| 65 |
+
```
|
|
|