Add pipeline tag, library name, and usage snippet

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +26 -5
README.md CHANGED
@@ -2,13 +2,15 @@
2
  base_model:
3
  - Qwen/Qwen3.5-9B
4
  license: mit
 
 
5
  ---
6
 
7
  # Distillation-Expert-Qwen3.5-9B
8
 
9
  [🌐 Project Page](https://recursivemas.github.io) | [πŸ’» Code](https://github.com/RecursiveMAS/RecursiveMAS) | [πŸ“„ Paper](https://arxiv.org/abs/2604.25917)
10
 
11
- We introduce RecursiveMAS, a multi-agent framework that scales agent collaboration through latent-space recursion.
12
  RecursiveMAS treats a multi-agent system as a unified recursive computation, where heterogeneous agents iteratively exchange, refine, and evolve their latent states across recursion rounds. In the Distillation-Style setting, the Expert Agent provides high-quality guidance to the Learner Agent, supporting recursive latent-space collaboration for improved task solving.
13
 
14
  ## Model Details
@@ -21,7 +23,27 @@ RecursiveMAS treats a multi-agent system as a unified recursive computation, whe
21
  | Base Model | Qwen3.5-9B |
22
 
23
  ⚠️ **Note:** This checkpoint is a **role-specific agent** in [**RecursiveMAS**](https://arxiv.org/abs/2604.25917), rather than a standalone model intended for plain-text generation.
24
- For detailed usage instructions, please refer to our [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ## Model Collections for RecursiveMAS
27
 
@@ -43,12 +65,11 @@ For detailed usage instructions, please refer to our [GitHub repository](https:/
43
  ```bibtex
44
  @misc{recursivemas,
45
  title={Recursive Multi-Agent Systems},
46
- author={Xiyuan Yang and Jiaru Zou and Rui Pan and Ruizhong Qiu and Pan Lu and Shizhe Diao and Jindong Jiang and Hanghang Tong and Tong Zhang and Markus J. Buehler and Jingrui He and James Zou},
47
  year={2026},
48
  eprint={2604.25917},
49
  archivePrefix={arXiv},
50
  primaryClass={cs.AI},
51
  url={https://arxiv.org/abs/2604.25917},
52
  }
53
- ```
54
-
 
2
  base_model:
3
  - Qwen/Qwen3.5-9B
4
  license: mit
5
+ library_name: transformers
6
+ pipeline_tag: text-generation
7
  ---
8
 
9
  # Distillation-Expert-Qwen3.5-9B
10
 
11
  [🌐 Project Page](https://recursivemas.github.io) | [πŸ’» Code](https://github.com/RecursiveMAS/RecursiveMAS) | [πŸ“„ Paper](https://arxiv.org/abs/2604.25917)
12
 
13
+ We introduce **RecursiveMAS**, a multi-agent framework that scales agent collaboration through **latent-space recursion**.
14
  RecursiveMAS treats a multi-agent system as a unified recursive computation, where heterogeneous agents iteratively exchange, refine, and evolve their latent states across recursion rounds. In the Distillation-Style setting, the Expert Agent provides high-quality guidance to the Learner Agent, supporting recursive latent-space collaboration for improved task solving.
15
 
16
  ## Model Details
 
23
  | Base Model | Qwen3.5-9B |
24
 
25
  ⚠️ **Note:** This checkpoint is a **role-specific agent** in [**RecursiveMAS**](https://arxiv.org/abs/2604.25917), rather than a standalone model intended for plain-text generation.
26
+
27
+ ## Usage
28
+
29
+ To load this agent as part of a RecursiveMAS system, you can use the loader provided in the [official codebase](https://github.com/RecursiveMAS/RecursiveMAS):
30
+
31
+ ```python
32
+ from system_loader import load_mas_system
33
+
34
+ # Load the distillation-style system
35
+ mas = load_mas_system(
36
+ style="distillation",
37
+ device="cuda",
38
+ trust_remote_code=True,
39
+ )
40
+
41
+ # Access the expert and learner agents
42
+ expert = mas.agents["expert"].model
43
+ learner = mas.agents["learner"].model
44
+ ```
45
+
46
+ For detailed usage instructions and the full inference pipeline, please refer to the [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
47
 
48
  ## Model Collections for RecursiveMAS
49
 
 
65
  ```bibtex
66
  @misc{recursivemas,
67
  title={Recursive Multi-Agent Systems},
68
+ author={Xiyuan Yang and Jiaru Zou and Rui Pan and Ruizhong Qiu and Pan Lu and Shizhe Diao and Jindong Jiang and Hanghang Tong stones and Tong Zhang and Markus J. Buehler and Jingrui He and James Zou},
69
  year={2026},
70
  eprint={2604.25917},
71
  archivePrefix={arXiv},
72
  primaryClass={cs.AI},
73
  url={https://arxiv.org/abs/2604.25917},
74
  }
75
+ ```