nielsr HF Staff commited on
Commit
4a700b8
·
verified ·
1 Parent(s): a698a9e

Add metadata (license, pipeline tag, library name) and paper reference

Browse files

This 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.

Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -1,5 +1,13 @@
 
 
 
 
 
 
1
  # InternVLA-N1 Model Series
2
 
 
 
3
  ![License](https://img.shields.io/badge/License-CC_BY--NC--SA_4.0-lightgrey.svg)
4
  ![Transformers](https://img.shields.io/badge/%F0%9F%A4%97%20Transformers-9cf?style=flat)
5
  ![PyTorch](https://img.shields.io/badge/PyTorch-EE4C2C?logo=pytorch&logoColor=white)
@@ -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
  ![License](https://img.shields.io/badge/License-CC_BY--NC--SA_4.0-lightgrey.svg)
12
  ![Transformers](https://img.shields.io/badge/%F0%9F%A4%97%20Transformers-9cf?style=flat)
13
  ![PyTorch](https://img.shields.io/badge/PyTorch-EE4C2C?logo=pytorch&logoColor=white)
 
93
  primaryClass={cs.RO},
94
  url={https://arxiv.org/abs/2512.08186},
95
  }
96
+ ```