Add metadata (license, pipeline tag, library name) and paper reference
Browse filesThis PR enhances the model card by adding key metadata to the YAML block:
- `license`: `cc-by-nc-sa-4.0` (as indicated by the existing badge and GitHub README)
- `pipeline_tag`: `robotics` (as the model is designed for vision-language navigation and embodied AI)
- `library_name`: `transformers` (as evidenced by `config.json` and `tokenizer_config.json` demonstrating compatibility)
These additions improve discoverability on the Hugging Face Hub and enable relevant features.
Additionally, the paper title and its arXiv link are explicitly added at the top of the markdown content for better context, linking to the original publication.
A sample usage code snippet has not been added, as the provided GitHub README only references an external notebook for inference and does not contain a direct code example, adhering to the "do not make up code yourself" disclaimer.
|
@@ -1,5 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# InternVLA-N1 Model Series
|
| 2 |
|
|
|
|
|
|
|
| 3 |

|
| 4 |

|
| 5 |

|
|
@@ -85,5 +93,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 |
+
license: cc-by-nc-sa-4.0
|
| 3 |
+
pipeline_tag: robotics
|
| 4 |
+
library_name: transformers
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
# InternVLA-N1 Model Series
|
| 8 |
|
| 9 |
+
The model was presented in the paper [Ground Slow, Move Fast: A Dual-System Foundation Model for Generalizable Vision-and-Language Navigation](https://arxiv.org/abs/2512.08186).
|
| 10 |
+
|
| 11 |

|
| 12 |

|
| 13 |

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