Improve model card: Add reinforcement learning tag, library name, and link to code
Browse filesThis PR improves the model card by adding the `reinforcement-learning` pipeline tag and linking to the project page and GitHub repository. A basic description of the model is also added to improve discoverability.
README.md
CHANGED
@@ -1,3 +1,27 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
pipeline_tag: reinforcement-learning
|
4 |
+
library_name: transformers
|
5 |
+
---
|
6 |
+
|
7 |
+
# ARMAP: Scaling Autonomous Agents via Automatic Reward Modeling And Planning
|
8 |
+
|
9 |
+
[Project Page](https://armap-agent.github.io) | [Paper](https://arxiv.org/abs/2502.12130) | [Model Weights](https://huggingface.co/Heaplax/ARMAP-RM-LoRA)
|
10 |
+
|
11 |
+
This repository contains the reward model for the paper [Scaling Autonomous Agents via Automatic Reward Modeling And Planning](https://arxiv.org/abs/2502.12130). This reward model automatically learns a reward function from environment interactions.
|
12 |
+
|
13 |
+
Code: https://github.com/armap-agent/ARMAP
|
14 |
+
|
15 |
+
## Citation
|
16 |
+
If you use this work or find it helpful, please consider citing:
|
17 |
+
```
|
18 |
+
@misc{chen2025scalingautonomousagentsautomatic,
|
19 |
+
title={Scaling Autonomous Agents via Automatic Reward Modeling And Planning},
|
20 |
+
author={Zhenfang Chen and Delin Chen and Rui Sun and Wenjun Liu and Chuang Gan},
|
21 |
+
year={2025},
|
22 |
+
eprint={2502.12130},
|
23 |
+
archivePrefix={arXiv},
|
24 |
+
primaryClass={cs.AI},
|
25 |
+
url={https://arxiv.org/abs/2502.12130},
|
26 |
+
}
|
27 |
+
```
|