Improve model card: Add pipeline tag, library name, and paper metadata
Browse filesThis PR enhances the model card by:
* Adding `pipeline_tag: text-generation` to accurately reflect the model's primary function of generating responses and problem-solving strategies. This will improve model discoverability at `https://huggingface.co/models?pipeline_tag=text-generation`.
* Adding `library_name: transformers` to enable the automated "how to use" widget on the model page, as evidence for `transformers` compatibility was found in `config.json` (e.g., `"transformers_version": "4.51.0"`, `"architectures": ["Qwen3ForCausalLM"]`) and `tokenizer_config.json` (`"tokenizer_class": "Qwen2Tokenizer"`).
* Adding `paper: 2508.19201` to link the model to its Hugging Face paper page.
* Removing the "File information" section from the model card content, as this information is intended for context and not for public display in the README, as per guidelines.
@@ -1,17 +1,20 @@
|
|
1 |
---
|
2 |
-
|
|
|
3 |
datasets:
|
4 |
- Heng1999/dapo-en-10k
|
5 |
- Heng1999/Omni-MATH-512
|
6 |
-
base_model:
|
7 |
-
- Qwen/Qwen3-8B
|
8 |
language:
|
9 |
- en
|
|
|
10 |
tags:
|
11 |
- tool-use
|
12 |
- reasoning
|
13 |
- mathematics
|
14 |
- qwen
|
|
|
|
|
|
|
15 |
---
|
16 |
|
17 |
# Understanding Tool-Integrated Reasoning (TIR Model)
|
|
|
1 |
---
|
2 |
+
base_model:
|
3 |
+
- Qwen/Qwen3-8B
|
4 |
datasets:
|
5 |
- Heng1999/dapo-en-10k
|
6 |
- Heng1999/Omni-MATH-512
|
|
|
|
|
7 |
language:
|
8 |
- en
|
9 |
+
license: apache-2.0
|
10 |
tags:
|
11 |
- tool-use
|
12 |
- reasoning
|
13 |
- mathematics
|
14 |
- qwen
|
15 |
+
pipeline_tag: text-generation
|
16 |
+
library_name: transformers
|
17 |
+
paper: 2508.19201
|
18 |
---
|
19 |
|
20 |
# Understanding Tool-Integrated Reasoning (TIR Model)
|