Improve model card: Add `library_name`, update license, enhance content, and update paper links

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +21 -28
README.md CHANGED
@@ -1,34 +1,32 @@
1
  ---
 
 
 
 
2
  tags:
3
  - text-generation
4
  - agent
5
  - tool-use
6
  - long-context
7
- license: other
8
- language:
9
- - en
10
- pipeline_tag: text-generation
11
  ---
12
 
13
  <div style="display: flex; justify-content: center; align-items: center; gap: 20px;">
14
- <img src="assets/sii.jpg" alt="SII" width="100px">
15
- <img src="assets/asi.png" alt="ASI" width="100px">
16
-
17
  </div>
18
- <div align="center>
19
-
20
-
21
  <a href="https://github.com/GAIR-NLP/LIMI" target="_blank" style="margin: 2px;">
22
- <img alt="Chat" src="assets/teaser.jpg" style="display: inline-block; vertical-align: middle;"/>
23
  </a>
24
-
25
  </div>
 
26
 
27
  # LIMI: Less is More for Agency
28
 
29
- [![arXiv](https://img.shields.io/badge/arXiv-2509.17567-b31b1b.svg)](https://arxiv.org/pdf/2509.17567)
30
  [![GitHub](https://img.shields.io/badge/GitHub-Repository-green)](https://github.com/GAIR-NLP/LIMI)
31
- [![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/GAIR/LIMI)
32
 
33
  ---
34
  To learn more about LIMI, feel free to explore our documentation and resources. Our release consists of the following sections:
@@ -45,6 +43,9 @@ LIMI is an agentic model fine‑tuned from [GLM‑4.5](https://huggingface.co/za
45
  - Long‑context trajectory with tokenizer‑filtered samples
46
  - OpenAI‑style `messages` with optional function/tool calls
47
 
 
 
 
48
  ## Model Details
49
 
50
  - Base model: `zai-org/GLM-4.5`
@@ -63,18 +64,17 @@ Our models achieve state-of-the-art performance across multiple agentic evaluati
63
  | **LIMI-Air** | **35.4** | **34.3** | **33.1** | **34.3** |
64
  | **LIMI** | **71.7** | **74.2** | **74.6** | **73.5** |
65
 
66
- For detailed benchmark results, experimental setup, and comprehensive comparisons, please refer to our [paper](https://arxiv.org/pdf/2509.17567).
67
 
68
  ## Model Zoo
69
 
70
- Our LIMO model is available on Hugging Face 🤗:
71
 
72
  | Model | Backbone | Size | Link |
73
  |---|---|---|---|
74
  | LIMI | [GLM‑4.5](https://huggingface.co/zai-org/GLM-4.5) | 353B | https://huggingface.co/GAIR/LIMI |
75
  | LIMI‑Air | [GLM‑4.5‑Air](https://huggingface.co/zai-org/GLM-4.5-Air) | 107B | https://huggingface.co/GAIR/LIMI-Air |
76
 
77
-
78
  ## Datasets
79
 
80
  We release our datasets through Hugging Face 🤗:
@@ -82,10 +82,9 @@ We release our datasets through Hugging Face 🤗:
82
  - Summary: curated agentic SFT data (OpenAI `messages`, optional `tools`, normalized tool‑call arguments); current release contains ~78 high‑quality samples.
83
  - Link: https://huggingface.co/datasets/GAIR/LIMI
84
 
85
- ## Quick Start
86
 
87
- <details>
88
- <summary>Start with HF Transformers</summary>
89
 
90
  ```python
91
  from transformers import AutoModelForCausalLM, AutoTokenizer
@@ -113,10 +112,7 @@ out = model.generate(
113
  print(tok.decode(out[0][inputs['input_ids'].shape[1]:], skip_special_tokens=True))
114
  ```
115
 
116
- </details>
117
-
118
- <details>
119
- <summary>Start with VLLM</summary>
120
 
121
  ```python
122
  from vllm import LLM, SamplingParams
@@ -129,8 +125,6 @@ out = llm.generate(text, SamplingParams(temperature=0.6, max_tokens=4096, top_p=
129
  print(out[0].outputs[0].text)
130
  ```
131
 
132
- </details>
133
-
134
  ## Prompting
135
 
136
  - Messages follow OpenAI chat format; include a grounding system message when helpful.
@@ -169,5 +163,4 @@ print(out[0].outputs[0].text)
169
  primaryClass={cs.AI},
170
  url={https://arxiv.org/abs/2509.17567},
171
  }
172
- ```
173
-
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ pipeline_tag: text-generation
6
  tags:
7
  - text-generation
8
  - agent
9
  - tool-use
10
  - long-context
11
+ library_name: transformers
 
 
 
12
  ---
13
 
14
  <div style="display: flex; justify-content: center; align-items: center; gap: 20px;">
15
+ <img src="https://github.com/GAIR-NLP/LIMI/raw/main/assets/sii.jpg" alt="SII" width="100px">
16
+ <img src="https://github.com/GAIR-NLP/LIMI/raw/main/assets/asi.png" alt="ASI" width="100px">
 
17
  </div>
18
+ <div align="center">
 
 
19
  <a href="https://github.com/GAIR-NLP/LIMI" target="_blank" style="margin: 2px;">
20
+ <img alt="Chat" src="https://github.com/GAIR-NLP/LIMI/raw/main/assets/teaser.jpg" style="display: inline-block; vertical-align: middle;"/>
21
  </a>
 
22
  </div>
23
+ <img src="https://github.com/GAIR-NLP/LIMI/raw/main/assets/demos.png">
24
 
25
  # LIMI: Less is More for Agency
26
 
27
+ [![arXiv](https://img.shields.io/badge/arXiv-2509.17567-b31b1b.svg)](https://huggingface.co/papers/2509.17567)
28
  [![GitHub](https://img.shields.io/badge/GitHub-Repository-green)](https://github.com/GAIR-NLP/LIMI)
29
+ [![Hugging Face Dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/GAIR/LIMI)
30
 
31
  ---
32
  To learn more about LIMI, feel free to explore our documentation and resources. Our release consists of the following sections:
 
43
  - Long‑context trajectory with tokenizer‑filtered samples
44
  - OpenAI‑style `messages` with optional function/tool calls
45
 
46
+ ## Paper
47
+ The model was introduced in the paper [LIMI: Less is More for Agency](https://huggingface.co/papers/2509.17567).
48
+
49
  ## Model Details
50
 
51
  - Base model: `zai-org/GLM-4.5`
 
64
  | **LIMI-Air** | **35.4** | **34.3** | **33.1** | **34.3** |
65
  | **LIMI** | **71.7** | **74.2** | **74.6** | **73.5** |
66
 
67
+ For detailed benchmark results, experimental setup, and comprehensive comparisons, please refer to our [paper](https://huggingface.co/papers/2509.17567).
68
 
69
  ## Model Zoo
70
 
71
+ Our LIMI model is available on Hugging Face 🤗:
72
 
73
  | Model | Backbone | Size | Link |
74
  |---|---|---|---|
75
  | LIMI | [GLM‑4.5](https://huggingface.co/zai-org/GLM-4.5) | 353B | https://huggingface.co/GAIR/LIMI |
76
  | LIMI‑Air | [GLM‑4.5‑Air](https://huggingface.co/zai-org/GLM-4.5-Air) | 107B | https://huggingface.co/GAIR/LIMI-Air |
77
 
 
78
  ## Datasets
79
 
80
  We release our datasets through Hugging Face 🤗:
 
82
  - Summary: curated agentic SFT data (OpenAI `messages`, optional `tools`, normalized tool‑call arguments); current release contains ~78 high‑quality samples.
83
  - Link: https://huggingface.co/datasets/GAIR/LIMI
84
 
85
+ ## Quick Start (Sample Usage)
86
 
87
+ ### Start with HF Transformers
 
88
 
89
  ```python
90
  from transformers import AutoModelForCausalLM, AutoTokenizer
 
112
  print(tok.decode(out[0][inputs['input_ids'].shape[1]:], skip_special_tokens=True))
113
  ```
114
 
115
+ ### Start with VLLM
 
 
 
116
 
117
  ```python
118
  from vllm import LLM, SamplingParams
 
125
  print(out[0].outputs[0].text)
126
  ```
127
 
 
 
128
  ## Prompting
129
 
130
  - Messages follow OpenAI chat format; include a grounding system message when helpful.
 
163
  primaryClass={cs.AI},
164
  url={https://arxiv.org/abs/2509.17567},
165
  }
166
+ ```