--- license: apache-2.0 task_categories: - image-text-to-image - image-to-image - text-to-image language: - en size_categories: - 1K/ └── models/ └── __/ └── / ├── 000000.png ├── 000001.png └── ... ``` For example: ``` arena/basic/models/johndoe_MyNewModel_20260205/MyNewModel/ ``` ### Generate Images with Diffgentor Use [Diffgentor](https://github.com/ruihanglix/diffgentor) to batch generate images for evaluation: ```bash # Download benchmark data hf download rhli/genarena --repo-type dataset --local-dir ./data # Generate images with your model diffgentor edit --backend diffusers \ --model_name YourModel \ --input ./data/basic/ \ --output_dir ./arena/basic/models/yourname_YourModel_20260205/YourModel/ ``` ### Run Battles for New Models ```bash genarena run --arena_dir ./arena --data_dir ./data \ --subset basic \ --exp_name yourname_YourModel_20260205 ``` GenArena automatically detects new models and schedules battles against existing models. ## Submit to Official Leaderboard > **Coming Soon**: The `genarena submit` command will allow you to submit your evaluation results to the official GenArena leaderboard via GitHub PR. The workflow will be: 1. Run evaluation locally with `genarena run` 2. Upload results to your HuggingFace repository 3. Submit via `genarena submit` which creates a PR for review ## Citation ```bibtex TBD ```