Add pipeline tag, library name, and improve model card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -2,26 +2,49 @@
|
|
| 2 |
base_model:
|
| 3 |
- deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
|
| 4 |
license: mit
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# Mixture-Math-DeepSeek-R1-Distill-Qwen-1.5B
|
| 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
|
| 16 |
| Item | Description |
|
| 17 |
|---|---|
|
| 18 |
-
| Model | Mixture-Math-DeepSeek-R1-Distill-Qwen-1.5B |
|
| 19 |
-
| Collaboration Style | Mixture-Style |
|
| 20 |
-
| Agent Role | Math Specialist Agent |
|
| 21 |
-
| Base Model | DeepSeek-R1-Distill-Qwen-1.5B |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
|
|
|
| 25 |
|
| 26 |
## Model Collections for RecursiveMAS
|
| 27 |
|
|
|
|
| 2 |
base_model:
|
| 3 |
- deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
|
| 4 |
license: mit
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
library_name: transformers
|
| 7 |
---
|
| 8 |
|
| 9 |
# Mixture-Math-DeepSeek-R1-Distill-Qwen-1.5B
|
| 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.
|
| 15 |
+
|
| 16 |
+
In the Mixture-Style setting, this **Math Specialist Agent** focuses on mathematical reasoning tasks and collaborates with other domain-specialized agents through RecursiveLink modules for final response generation.
|
| 17 |
+
|
| 18 |
+
The model was presented in the paper [Recursive Multi-Agent Systems](https://huggingface.co/papers/2604.25917).
|
| 19 |
|
| 20 |
## Model Details
|
| 21 |
|
| 22 |
| Item | Description |
|
| 23 |
|---|---|
|
| 24 |
+
| **Model** | Mixture-Math-DeepSeek-R1-Distill-Qwen-1.5B |
|
| 25 |
+
| **Collaboration Style** | Mixture-Style |
|
| 26 |
+
| **Agent Role** | Math Specialist Agent |
|
| 27 |
+
| **Base Model** | [DeepSeek-R1-Distill-Qwen-1.5B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B) |
|
| 28 |
+
|
| 29 |
+
⚠️ **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.
|
| 30 |
+
|
| 31 |
+
## Usage
|
| 32 |
+
|
| 33 |
+
To use this model as part of the RecursiveMAS system, you can load the entire multi-agent pipeline using the provided system loader from the [official repository](https://github.com/RecursiveMAS/RecursiveMAS):
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
# Requires cloning the repository: git clone https://github.com/RecursiveMAS/RecursiveMAS.git
|
| 37 |
+
from system_loader import load_mas_system
|
| 38 |
+
|
| 39 |
+
mas = load_mas_system(
|
| 40 |
+
style="mixture",
|
| 41 |
+
device="cuda",
|
| 42 |
+
trust_remote_code=True,
|
| 43 |
+
)
|
| 44 |
|
| 45 |
+
# Access individual agents
|
| 46 |
+
math_agent = mas.agents["math"].model
|
| 47 |
+
```
|
| 48 |
|
| 49 |
## Model Collections for RecursiveMAS
|
| 50 |
|