Add pipeline tag and sample usage
Browse filesThis PR improves the model card by:
- Adding the `text-generation` pipeline tag to the YAML metadata for better discoverability.
- Adding a "Usage" section with a Python code snippet from the GitHub repository to demonstrate how to load the multi-agent system.
- Maintaining clear links to the paper, project page, and code.
README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3.5-4B
|
| 4 |
license: mit
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# Distillation-Learner-Qwen3.5-4B
|
|
@@ -21,7 +22,23 @@ RecursiveMAS treats a multi-agent system as a unified recursive computation, whe
|
|
| 21 |
| Base Model | Qwen3.5-4B |
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
## Model Collections for RecursiveMAS
|
| 27 |
|
|
@@ -50,3 +67,4 @@ For detailed usage instructions, please refer to our [GitHub repository](https:/
|
|
| 50 |
primaryClass={cs.AI},
|
| 51 |
url={https://arxiv.org/abs/2604.25917},
|
| 52 |
}
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3.5-4B
|
| 4 |
license: mit
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
---
|
| 7 |
|
| 8 |
# Distillation-Learner-Qwen3.5-4B
|
|
|
|
| 22 |
| Base Model | Qwen3.5-4B |
|
| 23 |
|
| 24 |
⚠️ **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.
|
| 25 |
+
|
| 26 |
+
## Usage
|
| 27 |
+
|
| 28 |
+
For detailed environment setup and full training/inference instructions, please refer to the [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS). You can load the multi-agent system containing this agent using the following snippet:
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
from system_loader import load_mas_system
|
| 32 |
+
|
| 33 |
+
mas = load_mas_system(
|
| 34 |
+
style="distillation",
|
| 35 |
+
device="cuda",
|
| 36 |
+
trust_remote_code=True,
|
| 37 |
+
)
|
| 38 |
+
|
| 39 |
+
expert = mas.agents["expert"].model
|
| 40 |
+
learner = mas.agents["learner"].model
|
| 41 |
+
```
|
| 42 |
|
| 43 |
## Model Collections for RecursiveMAS
|
| 44 |
|
|
|
|
| 67 |
primaryClass={cs.AI},
|
| 68 |
url={https://arxiv.org/abs/2604.25917},
|
| 69 |
}
|
| 70 |
+
```
|