nielsr HF Staff commited on
Commit
d8e828d
·
verified ·
1 Parent(s): abe46f5

Add pipeline tag and library name to model card

Browse files

This PR enhances the model card by adding key metadata tags:
- `pipeline_tag: text-generation`: This helps categorize the model for text generation tasks on the Hub, improving discoverability.
- `library_name: transformers`: This indicates compatibility with the Hugging Face Transformers library, which will enable an automated "How to use" code snippet on the model page for easy integration.

Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -1,13 +1,16 @@
1
  ---
2
- license: mit
3
  base_model:
4
  - Qwen/Qwen3-30B-A3B-Thinking-2507
 
 
 
5
  ---
 
6
  <div align="center">
7
 
8
  # MarsRL
9
  <div>
10
- Advancing <strong>M</strong>ulti-<strong>A</strong>gent <strong>R</strong>easoning <strong>S</strong>ystem via <strong>R</strong>einforcement <strong>L</strong>earning with Agentic Pipeline Parallelism
11
  </div>
12
  <a href="https://arxiv.org/pdf/2511.11373" target="_blank">Paper</a> | <a href="https://github.com/liushulinle/MarsRL" target="_blank">GitHub</a>
13
  </div>
 
1
  ---
 
2
  base_model:
3
  - Qwen/Qwen3-30B-A3B-Thinking-2507
4
+ license: mit
5
+ pipeline_tag: text-generation
6
+ library_name: transformers
7
  ---
8
+
9
  <div align="center">
10
 
11
  # MarsRL
12
  <div>
13
+ Advancing **M**ulti-**A**gent **R**easoning **S**ystem via **R**einforcement **L**earning with Agentic Pipeline Parallelism
14
  </div>
15
  <a href="https://arxiv.org/pdf/2511.11373" target="_blank">Paper</a> | <a href="https://github.com/liushulinle/MarsRL" target="_blank">GitHub</a>
16
  </div>