{"id":28653906,"url":"https://github.com/tiger-ai-lab/genai-arena","last_synced_at":"2025-06-13T07:08:06.216Z","repository":{"id":225193384,"uuid":"757208233","full_name":"TIGER-AI-Lab/GenAI-Arena","owner":"TIGER-AI-Lab","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-27T11:05:16.000Z","size":18288,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-02-29T18:55:53.407Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TIGER-AI-Lab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-14T02:24:36.000Z","updated_at":"2024-02-29T18:56:20.414Z","dependencies_parsed_at":"2024-02-29T18:56:13.417Z","dependency_job_id":"5379aa63-3f07-4266-a293-b0e73bc066c6","html_url":"https://github.com/TIGER-AI-Lab/GenAI-Arena","commit_stats":null,"previous_names":["tiger-ai-lab/genai-arena"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TIGER-AI-Lab/GenAI-Arena","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TIGER-AI-Lab%2FGenAI-Arena","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TIGER-AI-Lab%2FGenAI-Arena/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TIGER-AI-Lab%2FGenAI-Arena/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TIGER-AI-Lab%2FGenAI-Arena/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TIGER-AI-Lab","download_url":"https://codeload.github.com/TIGER-AI-Lab/GenAI-Arena/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TIGER-AI-Lab%2FGenAI-Arena/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259599330,"owners_count":22882357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-13T07:08:05.435Z","updated_at":"2025-06-13T07:08:06.205Z","avatar_url":"https://github.com/TIGER-AI-Lab.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Installation\n\n```\npip install -e .\npip install -r imagenhub_requirements.txt\ncd ImagenHub \u0026\u0026 pip install -e .\n```\n\n### run\n\n\n```\n# run controller\npython3 -m fastchat.serve.controller \u003e controller.log \u0026\n\n# run worker\nCUDA_VISIBLE_DEVICES=0 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_LCM_generation --controller http://localhost:21001 --port 31005 --worker http://localhost:31005 \u003e  model_log/lcm.log \u0026\n\nCUDA_VISIBLE_DEVICES=0 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_SDXLTurbo_generation --controller http://localhost:21001 --port 31010 --worker http://localhost:31010 \u003e model_log/SDXLTurbo.log \u0026\n\nCUDA_VISIBLE_DEVICES=2 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_SDXL_generation --controller http://localhost:21001 --port 31017 --worker http://localhost:31017 \u003e model_log/SDXL.log \u0026\n\nCUDA_VISIBLE_DEVICES=1 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_OpenJourney_generation --controller http://localhost:21001 --port 31011 --worker http://localhost:31011 \u003e model_log/openjourney.log \u0026\n\nCUDA_VISIBLE_DEVICES=1 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_PixArtAlpha_generation --controller http://localhost:21001 --port 31012 --worker http://localhost:31012 --limit-worker-concurrency 1 \u003e model_log/PixArtAlpha.log \u0026\n\nCUDA_VISIBLE_DEVICES=6 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_SDXLLightning_generation --controller http://localhost:21001 --port 31022 --worker http://localhost:31022 --limit-worker-concurrency 1 \u003e model_log/SDXLLightning.log \u0026\n\nCUDA_VISIBLE_DEVICES=5 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_StableCascade_generation --controller http://localhost:21001 --port 31023 --worker http://localhost:31023 --limit-worker-concurrency 1 \u003e model_log/StableCascade.log \u0026\n\nnohup python3 -m fastchat.serve.model_worker --model-path \"Playground v2.5\" --controller http://localhost:21001 --port 31024 --worker http://localhost:31024 --limit-worker-concurrency 1 \u003e model_log/PlayGroundV2.5.log \u0026\n\nnohup python3 -m fastchat.serve.model_worker --model-path \"Playground v2\" --controller http://localhost:21001 --port 31021 --worker http://localhost:31021 --limit-worker-concurrency 1 \u003e model_log/PlayGroundV2.log \u0026\n\n\n\nCUDA_VISIBLE_DEVICES=2 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_CycleDiffusion_edition --controller http://localhost:21001 --port 31013 --worker http://localhost:31013 \u003e model_log/CycleDiffusion.log \u0026\n\nCUDA_VISIBLE_DEVICES=4 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_Pix2PixZero_edition --controller http://localhost:21001 --port 31014 --worker http://localhost:31014 --limit-worker-concurrency 1 \u003e model_log/Pix2PixZero.log \u0026\n\nCUDA_VISIBLE_DEVICES=7 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_Prompt2prompt_edition --controller http://localhost:21001 --port 31015 --worker http://localhost:31015 --limit-worker-concurrency 1 \u003e model_log/Prompt2prompt.log \u0026\n\nCUDA_VISIBLE_DEVICES=5 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_SDEdit_edition --controller http://localhost:21001 --port 31016 --worker http://localhost:31016 \u003e model_log/SDEdit.log \u0026\n\nCUDA_VISIBLE_DEVICES=5 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_InstructPix2Pix_edition --controller http://localhost:21001 --port 31018 --worker http://localhost:31018 \u003e model_log/InstructPix2Pix.log \u0026\n\nCUDA_VISIBLE_DEVICES=6 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_MagicBrush_edition --controller http://localhost:21001 --port 31019 --worker http://localhost:31019 \u003e model_log/MagicBrush.log \u0026\n\nCUDA_VISIBLE_DEVICES=6 nohup python3 -m fastchat.serve.model_worker --model-path imagenhub_PNP_edition --controller http://localhost:21001 --port 31020 --worker http://localhost:31020 --limit-worker-concurrency 1 \u003e model_log/PNP.log \u0026\n\n# run web server UI (without leaderboard)\npython3 -m fastchat.serve.gradio_web_server_image_editing_multi --share --controller-url http://localhost:21001\n\n# run web server UI (with leaderboard)\npython3 -m fastchat.serve.gradio_web_server_image_editing_multi --share --controller-url http://localhost:21001 --elo_results_dir ./arena_elo/results/latest/\n```\n\n### update leaderboard data\n\n```\ncd arena_elo \nexport LOGDIR=\"/home/tianle/arena_vote\"\nbash update_elo.sh\n```\nthen results are updated in `arena_elo/results/latest/`\n\n### WishList\n\n1. LEDITS: https://huggingface.co/spaces/editing-images/ledits\n2. InfEdit: https://huggingface.co/spaces/sled-umich/InfEdit\n3. MGIE: https://huggingface.co/spaces/tsujuifu/ml-mgie\n4. OpenDalle: https://huggingface.co/dataautogpt3/OpenDalleV1.1\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiger-ai-lab%2Fgenai-arena","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftiger-ai-lab%2Fgenai-arena","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftiger-ai-lab%2Fgenai-arena/lists"}