genarena 0.0.1__py3-none-any.whl → 0.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. genarena/__init__.py +49 -2
  2. genarena/__main__.py +10 -0
  3. genarena/arena.py +1685 -0
  4. genarena/battle.py +337 -0
  5. genarena/bt_elo.py +507 -0
  6. genarena/cli.py +1581 -0
  7. genarena/data.py +476 -0
  8. genarena/deploy/Dockerfile +22 -0
  9. genarena/deploy/README.md +55 -0
  10. genarena/deploy/__init__.py +5 -0
  11. genarena/deploy/app.py +84 -0
  12. genarena/experiments.py +121 -0
  13. genarena/leaderboard.py +270 -0
  14. genarena/logs.py +409 -0
  15. genarena/models.py +412 -0
  16. genarena/prompts/__init__.py +127 -0
  17. genarena/prompts/mmrb2.py +373 -0
  18. genarena/sampling.py +336 -0
  19. genarena/state.py +656 -0
  20. genarena/sync/__init__.py +105 -0
  21. genarena/sync/auto_commit.py +118 -0
  22. genarena/sync/deploy_ops.py +543 -0
  23. genarena/sync/git_ops.py +422 -0
  24. genarena/sync/hf_ops.py +891 -0
  25. genarena/sync/init_ops.py +431 -0
  26. genarena/sync/packer.py +587 -0
  27. genarena/sync/submit.py +837 -0
  28. genarena/utils.py +103 -0
  29. genarena/validation/__init__.py +19 -0
  30. genarena/validation/schema.py +327 -0
  31. genarena/validation/validator.py +329 -0
  32. genarena/visualize/README.md +148 -0
  33. genarena/visualize/__init__.py +14 -0
  34. genarena/visualize/app.py +938 -0
  35. genarena/visualize/data_loader.py +2430 -0
  36. genarena/visualize/static/app.js +3762 -0
  37. genarena/visualize/static/model_aliases.json +86 -0
  38. genarena/visualize/static/style.css +4104 -0
  39. genarena/visualize/templates/index.html +413 -0
  40. genarena/vlm.py +519 -0
  41. genarena-0.1.1.dist-info/METADATA +178 -0
  42. genarena-0.1.1.dist-info/RECORD +44 -0
  43. {genarena-0.0.1.dist-info → genarena-0.1.1.dist-info}/WHEEL +1 -2
  44. genarena-0.1.1.dist-info/entry_points.txt +2 -0
  45. genarena-0.0.1.dist-info/METADATA +0 -26
  46. genarena-0.0.1.dist-info/RECORD +0 -5
  47. genarena-0.0.1.dist-info/top_level.txt +0 -1
@@ -0,0 +1,86 @@
1
+ {
2
+ "gpt_image_1.5": {
3
+ "alias": "GPT-Image-1.5",
4
+ "link": "#"
5
+ },
6
+ "qwen-image-edit-2511_PE": {
7
+ "alias": "Qwen-Image-Edit-2511 + PE",
8
+ "link": "#"
9
+ },
10
+ "qwen-image-edit-2511": {
11
+ "alias": "Qwen-Image-Edit-2511",
12
+ "link": "#"
13
+ },
14
+ "nanobanana": {
15
+ "alias": "Nano Banana",
16
+ "link": "#"
17
+ },
18
+ "flux2_klein_9b": {
19
+ "alias": "FLUX.2 [klein] 9B",
20
+ "link": "#"
21
+ },
22
+ "qwen-image-edit-2509_PE": {
23
+ "alias": "Qwen-Image-Edit-2509 + PE",
24
+ "link": "#"
25
+ },
26
+ "longcat_image_edit": {
27
+ "alias": "LongCat-Image-Edit",
28
+ "link": "#"
29
+ },
30
+ "emu35": {
31
+ "alias": "Emu3.5",
32
+ "link": "#"
33
+ },
34
+ "qwen-image-edit-2509": {
35
+ "alias": "Qwen-Image-Edit-2509",
36
+ "link": "#"
37
+ },
38
+ "gpt_image_1": {
39
+ "alias": "GPT-Image-1",
40
+ "link": "#"
41
+ },
42
+ "flux2_pe": {
43
+ "alias": "FLUX.2 [dev] + PE",
44
+ "link": "#"
45
+ },
46
+ "flux2": {
47
+ "alias": "FLUX.2 [dev]",
48
+ "link": "#"
49
+ },
50
+ "flux2_klein_4b": {
51
+ "alias": "FLUX.2 [klein] 4B",
52
+ "link": "#"
53
+ },
54
+ "qwen-image-edit": {
55
+ "alias": "Qwen-Image-Edit",
56
+ "link": "#"
57
+ },
58
+ "flux1_kontext": {
59
+ "alias": "FLUX.1 [kontext]",
60
+ "link": "#"
61
+ },
62
+ "bagel": {
63
+ "alias": "Bagel",
64
+ "link": "#"
65
+ },
66
+ "glm_image": {
67
+ "alias": "GLM-Image",
68
+ "link": "#"
69
+ },
70
+ "step1x_edit": {
71
+ "alias": "Step1x-Edit",
72
+ "link": "#"
73
+ },
74
+ "dreamomni2": {
75
+ "alias": "DreamOmni2",
76
+ "link": "#"
77
+ },
78
+ "hunyuanimage3_ins_distill": {
79
+ "alias": "HunyuanImage-3.0-Instruct-Distill",
80
+ "link": "#"
81
+ },
82
+ "hunyuanimage3_ins": {
83
+ "alias": "HunyuanImage-3.0-Instruct",
84
+ "link": "#"
85
+ }
86
+ }