nielsr HF Staff commited on
Commit
2c0555a
·
verified ·
1 Parent(s): 77ae7e0

Add pipeline tag and sample usage

Browse files

This 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.

Files changed (1) hide show
  1. README.md +19 -1
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
- For detailed usage instructions, please refer to our [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```