genarena 0.0.1__py3-none-any.whl → 0.1.0__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.
- genarena/__init__.py +49 -2
- genarena/__main__.py +10 -0
- genarena/arena.py +1685 -0
- genarena/battle.py +337 -0
- genarena/bt_elo.py +507 -0
- genarena/cli.py +1581 -0
- genarena/data.py +476 -0
- genarena/deploy/Dockerfile +25 -0
- genarena/deploy/README.md +55 -0
- genarena/deploy/__init__.py +5 -0
- genarena/deploy/app.py +84 -0
- genarena/experiments.py +121 -0
- genarena/leaderboard.py +270 -0
- genarena/logs.py +409 -0
- genarena/models.py +412 -0
- genarena/prompts/__init__.py +127 -0
- genarena/prompts/mmrb2.py +373 -0
- genarena/sampling.py +336 -0
- genarena/state.py +656 -0
- genarena/sync/__init__.py +105 -0
- genarena/sync/auto_commit.py +118 -0
- genarena/sync/deploy_ops.py +543 -0
- genarena/sync/git_ops.py +422 -0
- genarena/sync/hf_ops.py +891 -0
- genarena/sync/init_ops.py +431 -0
- genarena/sync/packer.py +587 -0
- genarena/sync/submit.py +837 -0
- genarena/utils.py +103 -0
- genarena/validation/__init__.py +19 -0
- genarena/validation/schema.py +327 -0
- genarena/validation/validator.py +329 -0
- genarena/visualize/README.md +148 -0
- genarena/visualize/__init__.py +14 -0
- genarena/visualize/app.py +938 -0
- genarena/visualize/data_loader.py +2335 -0
- genarena/visualize/static/app.js +3762 -0
- genarena/visualize/static/model_aliases.json +86 -0
- genarena/visualize/static/style.css +4104 -0
- genarena/visualize/templates/index.html +413 -0
- genarena/vlm.py +519 -0
- genarena-0.1.0.dist-info/METADATA +178 -0
- genarena-0.1.0.dist-info/RECORD +44 -0
- {genarena-0.0.1.dist-info → genarena-0.1.0.dist-info}/WHEEL +1 -2
- genarena-0.1.0.dist-info/entry_points.txt +2 -0
- genarena-0.0.1.dist-info/METADATA +0 -26
- genarena-0.0.1.dist-info/RECORD +0 -5
- genarena-0.0.1.dist-info/top_level.txt +0 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
genarena/__init__.py,sha256=iGrYLzNq2KPUxPSfPuERpdRqhYl3Twtiup8yIybexE8,1480
|
|
2
|
+
genarena/__main__.py,sha256=7hf9jjv2EgMvXWq9eQxZw6JLE6_fZYsMFehy1TevOp0,244
|
|
3
|
+
genarena/arena.py,sha256=DXo7VBDBkOWzxWYMSfLoXJ9LFZwjxFoLLbceOJmqbds,64900
|
|
4
|
+
genarena/battle.py,sha256=34e_TEbxqEFoteM-Z3ciyNGLLmwBWX5l8Le1ZY_JttM,10369
|
|
5
|
+
genarena/bt_elo.py,sha256=2MxBsyafJTbFK-ZZ9CkC1xitHe6z6i5m5bO_Y5K2Ces,16898
|
|
6
|
+
genarena/cli.py,sha256=niLFi6B705HVaZru9yefWO4K0K_QEXPlSFEB57gq4Iw,45464
|
|
7
|
+
genarena/data.py,sha256=YHoK5SmbnBYNYfSb7xhZPbf11lORaKCypUOZXkrwSU4,16030
|
|
8
|
+
genarena/experiments.py,sha256=D1tfDldOLqVTcRj-LhKbmuktg1KCQ6C7JHPvMOp_-Pk,3722
|
|
9
|
+
genarena/leaderboard.py,sha256=hrMfKM2mLbyQG_T8jVgPxpLyWx1cbNKjotDQHexMTI0,7548
|
|
10
|
+
genarena/logs.py,sha256=eMJj_GC9uMyCLHloMF44ImxwRPPxeafzFRiYqPP_Jcw,13077
|
|
11
|
+
genarena/models.py,sha256=qNf9Ns7PXmi9AuMZYkel08WPh5WlrfJ70K81-wuKk3E,13207
|
|
12
|
+
genarena/sampling.py,sha256=v3AeOASfrxBYyPGy3tlAgBetK5F1_AhdJa9HgB9-XQM,11607
|
|
13
|
+
genarena/state.py,sha256=SK93_ACqHVS3FpHchp5Oj-UvwjDcPZv-ACBX3Cc-P8Q,24095
|
|
14
|
+
genarena/utils.py,sha256=ppzphYoNryjBMQlgS4GAGC2lw1nmdE_zN4RTcDQk5Y8,2685
|
|
15
|
+
genarena/vlm.py,sha256=kfgLtSd2wJ077O-VxlNbvRv70Hgg-jWN5ZcICruaZBw,18249
|
|
16
|
+
genarena/deploy/Dockerfile,sha256=UN3lm5WgFIxR4plsLKqhFXnvsqZ-ZuDC7KvRQ5E9Qiw,710
|
|
17
|
+
genarena/deploy/README.md,sha256=7KcPVY73_5Gotr6a-E24xgeVxe5fokuT4KlupQead8w,1576
|
|
18
|
+
genarena/deploy/__init__.py,sha256=BpXfurQ84w_Qr_C8Joy0Oh_9HCU--5cMSt4wvxsPV8Y,122
|
|
19
|
+
genarena/deploy/app.py,sha256=BPifFGz9p0J7-TFw19JPuzmxamp-hdNvVpIxcvHAPsc,2716
|
|
20
|
+
genarena/prompts/__init__.py,sha256=J7ytJJp6oiWqrNlWgy9vD2P90o-H3txS5dMOSQvh-s0,3600
|
|
21
|
+
genarena/prompts/mmrb2.py,sha256=557U0LE82JsqCsfh2J0WpxIK7c0J45vT8Rbr8q1ayTk,13904
|
|
22
|
+
genarena/sync/__init__.py,sha256=pdR4uOuXLCWxyEnGsQNrSuW3bIpEKlJgvHlzW4rv70s,2149
|
|
23
|
+
genarena/sync/auto_commit.py,sha256=5Iid-DcbgDtdToeoe27A9iQbF-404mcl_d6FSZ5LTqQ,3511
|
|
24
|
+
genarena/sync/deploy_ops.py,sha256=D3MceJGP-9WHFiN9NFjvWQLUtlz7MMCanq_GzCfX_gw,17761
|
|
25
|
+
genarena/sync/git_ops.py,sha256=oy5KyrfVpf7QGJqphe3Cc7AzI6NqqhN1LhxGXL1gB9Q,11957
|
|
26
|
+
genarena/sync/hf_ops.py,sha256=8DB4JnXKH2fZ7E_HwMziXjg2t3ohyNeOCKNahpZSbAU,27356
|
|
27
|
+
genarena/sync/init_ops.py,sha256=6Ld85QIO_pHwB6CNZ213uOSCAZhfyCqLVLtjNB7szm4,14023
|
|
28
|
+
genarena/sync/packer.py,sha256=T8mzDjZWZ1biIcJ52kSC7CoUjvGHywseJAcj6IVt-9A,19774
|
|
29
|
+
genarena/sync/submit.py,sha256=dr94Tjan-5Wn6mj_2w59wxg7KHd3WLPJpcvLwxwDbDQ,27334
|
|
30
|
+
genarena/validation/__init__.py,sha256=hBdRVQstFjJaue6OTc-c-XyZhhoogf8iTHPljeO2hSc,439
|
|
31
|
+
genarena/validation/schema.py,sha256=O2XWT5cjNOYovZ7B-wr0I0hidN63M9WWvnmm2AsKqiA,11023
|
|
32
|
+
genarena/validation/validator.py,sha256=-yfVMXJBOSMmfajczGjpW3K0Xe1LFHPbdXh5cuMMNHs,11378
|
|
33
|
+
genarena/visualize/README.md,sha256=8YOEBRicm35G6wEbA-qBbHBkZwozl0Zdl8zNqmb-t_Y,4525
|
|
34
|
+
genarena/visualize/__init__.py,sha256=Id0QCPo_QuxjZOG7QuqttdzNCwmDFrH26eeYqHLn-JU,283
|
|
35
|
+
genarena/visualize/app.py,sha256=2TbGuH22zV2U3Fm8LjZLTxsoVeZHRmMqsBlSZ1xhz1A,34903
|
|
36
|
+
genarena/visualize/data_loader.py,sha256=C28qx26iJT_cJbAJfRDVKprB9S6nZK63kbfzh87ofpk,86107
|
|
37
|
+
genarena/visualize/static/app.js,sha256=g2sdB9zfa_Nee-sQ-JJOWOGKJeihD31LpWyg-vSB6JA,144584
|
|
38
|
+
genarena/visualize/static/model_aliases.json,sha256=iZQ4IIm-Vv2ly8XSPT2QPmDHM4PlnJS3RTdskbfhQME,1594
|
|
39
|
+
genarena/visualize/static/style.css,sha256=nIAyGr9PpY9C-wGR5TGPgHB1g9KRCWN-iEEN8F1tbdk,78265
|
|
40
|
+
genarena/visualize/templates/index.html,sha256=cJoFWkXVXP9MDee16vq-ufMhbs89cVwaTVhS4RKMW1E,21725
|
|
41
|
+
genarena-0.1.0.dist-info/METADATA,sha256=IJs5QDs2nGpGSxho3j4-zqfSY3GQu1iycZg6VFKV_Qc,6065
|
|
42
|
+
genarena-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
43
|
+
genarena-0.1.0.dist-info/entry_points.txt,sha256=yEZL7896wPLpHS9dWMQ82V5-04PJaYkm48mb7dNdlhM,47
|
|
44
|
+
genarena-0.1.0.dist-info/RECORD,,
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: genarena
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: genarena
|
|
5
|
-
Author-email: genarena <genarena@example.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/genarena/genarena
|
|
8
|
-
Classifier: Development Status :: 1 - Planning
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
-
Requires-Python: >=3.7
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
|
|
14
|
-
# genarena
|
|
15
|
-
|
|
16
|
-
A placeholder package for genarena.
|
|
17
|
-
|
|
18
|
-
## Installation
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
pip install genarena
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## Description
|
|
25
|
-
|
|
26
|
-
This package is currently under development. Stay tuned for updates!
|
genarena-0.0.1.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
genarena/__init__.py,sha256=DIOgVpv_cedWm9NB5YLLp_I6USJNQ_IVmR5D2E0d26A,63
|
|
2
|
-
genarena-0.0.1.dist-info/METADATA,sha256=qa1Yy4cZYnRTZB8Q3MuAEbyF94JtMBYYawugmh8EEvU,584
|
|
3
|
-
genarena-0.0.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
4
|
-
genarena-0.0.1.dist-info/top_level.txt,sha256=1FOw2wwqRVY7ZQ3cy4EGtHdLAAcHj9lbUqPDu_ZmAXk,9
|
|
5
|
-
genarena-0.0.1.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
genarena
|