nielsr HF Staff commited on
Commit
28bd48a
·
verified ·
1 Parent(s): 505112a

Improve model card: Add pipeline_tag, library_name, and paper link

Browse files

This PR enhances the model card by:
- Adding `pipeline_tag: text-generation` to improve discoverability on the Hub for LLM-based models.
- Adding `library_name: transformers` as the `config.json` indicates compatibility with the Transformers library, enabling an automated "How to use" code snippet.
- Adding an explicit text link to the Hugging Face paper page after the introductory sentence, making the primary paper reference more prominent. The existing arXiv badge link remains unchanged.

These changes make the model card more informative and user-friendly for the community.

Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -1,12 +1,17 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
 
4
  <div align="center">
5
 
6
  # MATPO: Multi-Agent Tool-Integrated Policy Optimization
7
 
8
  Train Multiple Agent Roles Within a Single LLM via Reinforcement Learning.
9
 
 
 
10
  <!-- [![arXiv](https://img.shields.io/badge/arXiv-Coming_Soon.svg)](https://arxiv.org/pdf/2510.04678)
11
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
12
  [![Python 3.10+](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/)
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: text-generation
4
+ library_name: transformers
5
  ---
6
+
7
  <div align="center">
8
 
9
  # MATPO: Multi-Agent Tool-Integrated Policy Optimization
10
 
11
  Train Multiple Agent Roles Within a Single LLM via Reinforcement Learning.
12
 
13
+ This model is presented in the paper [Multi-Agent Tool-Integrated Policy Optimization](https://huggingface.co/papers/2510.04678).
14
+
15
  <!-- [![arXiv](https://img.shields.io/badge/arXiv-Coming_Soon.svg)](https://arxiv.org/pdf/2510.04678)
16
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
17
  [![Python 3.10+](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/)