Ephemeral182 commited on
Commit
c893ed7
Β·
verified Β·
1 Parent(s): 562355d

Update public links in model card

Browse files
Files changed (1) hide show
  1. README.md +9 -11
README.md CHANGED
@@ -16,7 +16,7 @@ tags:
16
  - multimodal
17
  - qwen3-vl
18
  datasets:
19
- - MeiGen-AI/GenEvolve-Data
20
  ---
21
 
22
  <div align="center">
@@ -30,11 +30,9 @@ datasets:
30
  <p>
31
  <a href="https://ephemeral182.github.io/GenEvolve/">
32
  <img alt="Project Page" src="https://img.shields.io/badge/🌐_Project-Page-1f6feb"></a>
33
- <a href="https://arxiv.org/abs/XXXX.XXXXX">
34
- <img alt="arXiv" src="https://img.shields.io/badge/πŸ“„_arXiv-XXXX.XXXXX-b31b1b"></a>
35
- <a href="https://github.com/Ephemeral182/GenEvolve">
36
  <img alt="Code" src="https://img.shields.io/badge/πŸ’Ύ_GitHub-Code-181717"></a>
37
- <a href="https://huggingface.co/datasets/MeiGen-AI/GenEvolve-Data">
38
  <img alt="Dataset" src="https://img.shields.io/badge/πŸ€—_Dataset-GenEvolve--Data-FFD21E"></a>
39
  </p>
40
 
@@ -111,12 +109,12 @@ For a user request, the agent samples a multi-turn trajectory of tool calls befo
111
 
112
  ## πŸš€ Quick Start
113
 
114
- The deployed checkpoint is the **student policy** β€” it consumes a user prompt and returns a JSON `gen_prompt + reference_images` program through a `<think>/<tool_call>/<answer>` loop. The end-to-end runtime (vLLM serving + agent loop + tools + Qwen/Nano renderers) lives in the [GitHub repo](https://github.com/Ephemeral182/GenEvolve); the snippet below mirrors its installation and usage.
115
 
116
  ### 1. Install the main GenEvolve runtime
117
 
118
  ```bash
119
- git clone https://github.com/Ephemeral182/GenEvolve.git
120
  cd GenEvolve
121
 
122
  conda create -n genevolve python=3.11 -y && conda activate genevolve
@@ -144,7 +142,7 @@ MODEL_PATH=MeiGen-AI/GenEvolve PORT=8000 TP=1 DP=8 bash scripts/serve_vllm.sh
144
 
145
  ```bash
146
  export SERPER_API_KEY=<your_key> # required for search / image_search
147
- export GOOGLE_API_KEY=<your_key> # only for --backend nano-banana-pro
148
 
149
  # Nano Banana Pro renderer
150
  python examples/quickstart.py \
@@ -183,9 +181,9 @@ The agent's final `<answer>` is a JSON object:
183
  | Artifact | Link |
184
  |---|---|
185
  | Project page | https://ephemeral182.github.io/GenEvolve/ |
186
- | Paper (arXiv) | https://arxiv.org/abs/XXXX.XXXXX |
187
- | Code | https://github.com/Ephemeral182/GenEvolve |
188
- | Training data + benchmark | [MeiGen-AI/GenEvolve-Data](https://huggingface.co/datasets/MeiGen-AI/GenEvolve-Data) |
189
  | Base model | [Qwen/Qwen3-VL-8B-Instruct](https://huggingface.co/Qwen/Qwen3-VL-8B-Instruct) |
190
 
191
  ---
 
16
  - multimodal
17
  - qwen3-vl
18
  datasets:
19
+ - MeiGen-AI/GenEvolve-Data-Bench
20
  ---
21
 
22
  <div align="center">
 
30
  <p>
31
  <a href="https://ephemeral182.github.io/GenEvolve/">
32
  <img alt="Project Page" src="https://img.shields.io/badge/🌐_Project-Page-1f6feb"></a>
33
+ <a href="https://github.com/MeiGen-AI/GenEvolve">
 
 
34
  <img alt="Code" src="https://img.shields.io/badge/πŸ’Ύ_GitHub-Code-181717"></a>
35
+ <a href="https://huggingface.co/datasets/MeiGen-AI/GenEvolve-Data-Bench">
36
  <img alt="Dataset" src="https://img.shields.io/badge/πŸ€—_Dataset-GenEvolve--Data-FFD21E"></a>
37
  </p>
38
 
 
109
 
110
  ## πŸš€ Quick Start
111
 
112
+ The deployed checkpoint is the **student policy** β€” it consumes a user prompt and returns a JSON `gen_prompt + reference_images` program through a `<think>/<tool_call>/<answer>` loop. The end-to-end runtime (vLLM serving + agent loop + tools + Qwen/Nano renderers) lives in the [GitHub repo](https://github.com/MeiGen-AI/GenEvolve); the snippet below mirrors its installation and usage.
113
 
114
  ### 1. Install the main GenEvolve runtime
115
 
116
  ```bash
117
+ git clone https://github.com/MeiGen-AI/GenEvolve.git
118
  cd GenEvolve
119
 
120
  conda create -n genevolve python=3.11 -y && conda activate genevolve
 
142
 
143
  ```bash
144
  export SERPER_API_KEY=<your_key> # required for search / image_search
145
+ export GOOGLE_API_KEY=<your_key> # or GEMINI_API_KEY; only for --backend nano-banana-pro
146
 
147
  # Nano Banana Pro renderer
148
  python examples/quickstart.py \
 
181
  | Artifact | Link |
182
  |---|---|
183
  | Project page | https://ephemeral182.github.io/GenEvolve/ |
184
+ | Paper | Coming soon |
185
+ | Code | https://github.com/MeiGen-AI/GenEvolve |
186
+ | Training data + benchmark | [MeiGen-AI/GenEvolve-Data-Bench](https://huggingface.co/datasets/MeiGen-AI/GenEvolve-Data-Bench) |
187
  | Base model | [Qwen/Qwen3-VL-8B-Instruct](https://huggingface.co/Qwen/Qwen3-VL-8B-Instruct) |
188
 
189
  ---