zhongshsh commited on
Commit
73ceab2
·
verified ·
1 Parent(s): e708893

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -18
README.md CHANGED
@@ -18,33 +18,62 @@ base_model: Qwen/Qwen3-1.7B
18
  ---
19
  # AutoGEO_mini_Qwen1.7B_GEOBench
20
 
21
- A lightweight **web-document rewriting** model fine-tuned with **GRPO** (reinforcement learning) from **Qwen3-1.7B**, developed as part of the AutoGEO framework introduced in:
22
 
23
- **WHAT GENERATIVE SEARCH ENGINES LIKE AND HOW TO OPTIMIZE WEB CONTENT COOPERATIVELY**
24
- Paper (arXiv): https://arxiv.org/abs/2510.11438
25
 
26
- ---
27
 
28
- ## What this model does
29
 
30
- **AutoGEO_mini_Qwen1.7B_GEOBench** rewrites raw web documents into improved versions that are better aligned with generative search engines’ preferences for **GEO-Bench dataset**.
 
 
31
 
32
- In our experiments/usage:
33
- - The total cost is about **0.0071×** the cost of **gemini-2.5-pro** for comparable rewriting workloads.
34
- - Rewritten documents achieve **significant improvements in GEO metrics**.
35
 
36
- ---
37
 
38
- ## Training summary
39
 
40
- - **Base model:** Qwen3-1.7B
41
- - **Method:** GRPO-based reinforcement learning fine-tuning
42
- - **Task:** Rewrite original web documents to improve GEO metrics (per the AutoGEO framework in the paper above)
43
 
44
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- ## Repository contents
47
 
48
- This repository includes the standard inference artifacts (e.g., `model.safetensors`, `config.json`, `tokenizer.json`, `chat_template.jinja`, etc.) required to load and run the model with `transformers`.
49
 
50
- ---
 
 
 
 
 
 
 
 
18
  ---
19
  # AutoGEO_mini_Qwen1.7B_GEOBench
20
 
21
+ # AutoGEO<sub>Mini</sub> (Qwen1.7B, GEOBench)
22
 
23
+ AutoGEO<sub>Mini</sub> (Qwen1.7B, GEOBench) is a GEO model designed to improve how web document is incorporated into answers generated by **LLM-based search engines**.
 
24
 
25
+ The model rewrites a given document to better match the preferences of generative engines (e.g., GPT, Gemini, Claude), with the goal of increasing the document’s **visibility and coverage** in generated responses, while **preserving the original meaning and factual content**.
26
 
27
+ This model is part of the **AutoGEO** framework proposed in the paper
28
 
29
+ 📄 **Paper:** ["What Generative Search Engines Like and How to Optimize Web Content Cooperatively"](https://arxiv.org/abs/2510.11438)
30
+ 👥 **Authors:** Yujiang Wu*, Shanshan Zhong*, Yubin Kim, Chenyan Xiong (*Equal contribution)
31
+ 🚀 **Code:** [AutoGEO on GitHub](https://github.com/cxcscmu/AutoGEO)
32
 
33
+ ## Usage
 
 
34
 
35
+ This model is designed to be used through the [**AutoGEO framework**](https://github.com/cxcscmu/AutoGEO). Try it out in [huggingface Space](https://huggingface.co/spaces/cx-cmu/AutoGEO_Mini) or
36
 
37
+ Quick starts:
38
 
39
+ ```python
40
+ from autogeo.rewriters import rewrite_document
 
41
 
42
+ rewritten_text = rewrite_document(
43
+ document="Input text.",
44
+ dataset="GEOBench",
45
+ engine_llm="gemini",
46
+ model_path="cx-cmu/AutoGEO_mini_Qwen1.7B_ResearchyGEO",
47
+ )
48
+ ```
49
+
50
+ Evaluation:
51
+
52
+ ```bash
53
+ python -m autogeo.evaluate \
54
+ --model autogeo_mini \
55
+ --model_path cx-cmu/AutoGEO_mini_Qwen1.7B_ResearchyGEO \
56
+ --dataset GEOBench
57
+ ```
58
+
59
+
60
+
61
+ ## Related Resources
62
+
63
+ * **Paper:** [https://arxiv.org/abs/2510.11438](https://arxiv.org/abs/2510.11438)
64
+ * **Code:** [https://github.com/cxcscmu/AutoGEO](https://github.com/cxcscmu/AutoGEO)
65
+ * **Demo:** [https://huggingface.co/spaces/cx-cmu/AutoGEO_Mini](https://huggingface.co/spaces/cx-cmu/AutoGEO_Mini)
66
+ * **Dataset:** [https://huggingface.co/datasets/cx-cmu/GEOBench](https://huggingface.co/datasets/cx-cmu/GEOBench)
67
 
68
+ ## Citation
69
 
70
+ If you use this model, please cite:
71
 
72
+ ```bibtex
73
+ @article{wu2025generative,
74
+ title={What Generative Search Engines Like and How to Optimize Web Content Cooperatively},
75
+ author={Wu, Yujiang and Zhong, Shanshan and Kim, Yubin and Xiong, Chenyan},
76
+ journal={arXiv preprint arXiv:2510.11438},
77
+ year={2025}
78
+ }
79
+ ```