Improve model card: Add pipeline tag, library name, and license metadata
Browse filesThis PR enhances the model card by adding the following metadata to the YAML header:
- `pipeline_tag: robotics` to categorize the model for vision-and-language navigation tasks.
- `library_name: transformers` to indicate compatibility with the 🤗 Transformers library, enabling the automated "how to use" widget.
- `license: cc-by-nc-sa-4.0` to explicitly state the model's license in the metadata, aligning with the existing badge and project documentation.
No other content changes were made, adhering to existing badge displays and external resource links.
Please review and merge if these additions align with the model's details.
README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# InternVLA-N1 Model Series
|
| 2 |
|
| 3 |

|
|
@@ -85,5 +91,4 @@ If you find our work helpful, please consider starring this repository 🌟 and
|
|
| 85 |
primaryClass={cs.RO},
|
| 86 |
url={https://arxiv.org/abs/2512.08186},
|
| 87 |
}
|
| 88 |
-
|
| 89 |
-
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: robotics
|
| 3 |
+
library_name: transformers
|
| 4 |
+
license: cc-by-nc-sa-4.0
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
# InternVLA-N1 Model Series
|
| 8 |
|
| 9 |

|
|
|
|
| 91 |
primaryClass={cs.RO},
|
| 92 |
url={https://arxiv.org/abs/2512.08186},
|
| 93 |
}
|
| 94 |
+
```
|
|
|