Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# GUI-Shift: Enhancing VLM-based GUI Agents through Self-supervised Reinforcement Learning
|
| 2 |
|
| 3 |
This repository implements **GUI-Shift** from the paper ["GUI-Shift: Enhancing VLM-based GUI Agents through Self-supervised Reinforcement Learning"](https://arxiv.org/abs/2505.12493) by Longxi Gao, Li Zhang, and Mengwei Xu.
|
|
@@ -171,3 +175,23 @@ The filtering pipeline selects informative and challenging samples:
|
|
| 171 |
## License
|
| 172 |
|
| 173 |
Apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# GUI-Shift: Enhancing VLM-based GUI Agents through Self-supervised Reinforcement Learning
|
| 6 |
|
| 7 |
This repository implements **GUI-Shift** from the paper ["GUI-Shift: Enhancing VLM-based GUI Agents through Self-supervised Reinforcement Learning"](https://arxiv.org/abs/2505.12493) by Longxi Gao, Li Zhang, and Mengwei Xu.
|
|
|
|
| 175 |
## License
|
| 176 |
|
| 177 |
Apache-2.0
|
| 178 |
+
|
| 179 |
+
<!-- ml-intern-provenance -->
|
| 180 |
+
## Generated by ML Intern
|
| 181 |
+
|
| 182 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 183 |
+
|
| 184 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 185 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 186 |
+
|
| 187 |
+
## Usage
|
| 188 |
+
|
| 189 |
+
```python
|
| 190 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 191 |
+
|
| 192 |
+
model_id = "luanns/gui-shift"
|
| 193 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 194 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 195 |
+
```
|
| 196 |
+
|
| 197 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|