clefourrier HF Staff commited on
Commit
1f5f1cc
Β·
0 Parent(s):

Squash entire repository history into a single commit

Browse files
This view is limited to 50 files because it contains too many changes. Β  See raw diff
Files changed (50) hide show
  1. .gitignore +14 -0
  2. README.md +27 -0
  3. assets/images/ifeval_score_per_model_type.png +0 -0
  4. assets/images/math_fn_gsm8k.png +0 -0
  5. assets/images/math_score_per_model_type.png +0 -0
  6. assets/images/normalized_vs_raw_scores.png +0 -0
  7. assets/images/ranking_top10_bottom10.png +0 -0
  8. assets/images/saturation.png +0 -0
  9. assets/images/task_vs_mean.png +0 -0
  10. assets/images/thumbnail.png +0 -0
  11. assets/images/timewise_analysis_full.png +0 -0
  12. assets/images/timewise_analysis_light.png +0 -0
  13. assets/images/v2_correlation_heatmap.png +0 -0
  14. assets/images/v2_fn_of_mmlu.png +0 -0
  15. dist/assets/images/ifeval_score_per_model_type.png +0 -0
  16. dist/assets/images/math_fn_gsm8k.png +0 -0
  17. dist/assets/images/math_score_per_model_type.png +0 -0
  18. dist/assets/images/normalized_vs_raw_scores.png +0 -0
  19. dist/assets/images/ranking_top10_bottom10.png +0 -0
  20. dist/assets/images/saturation.png +0 -0
  21. dist/assets/images/task_vs_mean.png +0 -0
  22. dist/assets/images/thumbnail.png +0 -0
  23. dist/assets/images/timewise_analysis_full.png +0 -0
  24. dist/assets/images/timewise_analysis_light.png +0 -0
  25. dist/assets/images/v2_correlation_heatmap.png +0 -0
  26. dist/assets/images/v2_fn_of_mmlu.png +0 -0
  27. dist/bibliography.bib +334 -0
  28. dist/distill.bundle.js +0 -0
  29. dist/distill.bundle.js.map +0 -0
  30. dist/index.html +0 -0
  31. dist/main.bundle.js +2 -0
  32. dist/main.bundle.js.map +1 -0
  33. dist/style.css +254 -0
  34. notebooks/v1_v2_analysis.ipynb +0 -0
  35. notebooks/v1_v2_clem-final.ipynb +0 -0
  36. notebooks/v2_analysis.ipynb +0 -0
  37. package-lock.json +0 -0
  38. package.json +33 -0
  39. src/bibliography.bib +334 -0
  40. src/colors.mjs +77 -0
  41. src/distill.js +0 -0
  42. src/fragments/avg_ifeval_vs_all.html +1 -0
  43. src/fragments/correlation_heatmap.html +1 -0
  44. src/fragments/math_vs_avg_all.html +1 -0
  45. src/fragments/math_vs_gsm8k.html +1 -0
  46. src/fragments/model_size_vs_perf.html +0 -0
  47. src/fragments/new_scores_vs_old.html +1 -0
  48. src/fragments/normalized_vs_raw.html +1 -0
  49. src/fragments/plot.html +2 -0
  50. src/fragments/rankings_change.html +2 -0
.gitignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ venv/
2
+ .venv/
3
+ __pycache__/
4
+ .env
5
+ .ipynb_checkpoints
6
+ .vscode/
7
+ .DS_Store
8
+ .ruff_cache/
9
+ .python-version
10
+ .profile_app.python
11
+ *pstats
12
+ poetry.lock
13
+ node_modules/
14
+
README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: 'Open-LLM performances are plateauing, let’s make the leaderboard steep again'
3
+ emoji: πŸ”οΈ
4
+ colorFrom: pink
5
+ colorTo: red
6
+ sdk: static
7
+ pinned: false
8
+ header: mini
9
+ app_file: dist/index.html
10
+ thumbnail: https://huggingface.co/spaces/open-llm-leaderboard/blog/resolve/main/assets/images/thumbnail.png
11
+ ---
12
+
13
+ ## How to update the blog
14
+ - `npm install`
15
+ - `npm run dev`
16
+ - change in src, then `npm run build`
17
+ - commit dist to propagate changes + assets/src to allow for easier local development
18
+
19
+ ## Templating
20
+ You can leverage the [handlebars](https://handlebarsjs.com/) templating engine to generate html files from a template. Only the `.html.handlebars` files are processed. Currently only variables based on the files in src/fragments are available. Thus if you want to substitute the content of a frament file use it's dashed name as a variable name (e.g. `{{saturation-html}}`).
21
+
22
+ ## Colors consistency
23
+ All `.json` files in /assets are subject of color transformation.
24
+ The expected format of the transformed key:value is `[color|colorFrom|colorTo]:colorName opacity`. The colorName is they substitued by the named color defined in color.mjs.
25
+
26
+ ## What would be nice
27
+ 1) Not using static spaces and instead building the file on spaces directly. This way we don't have recommit the dist all the time
assets/images/ifeval_score_per_model_type.png ADDED
assets/images/math_fn_gsm8k.png ADDED
assets/images/math_score_per_model_type.png ADDED
assets/images/normalized_vs_raw_scores.png ADDED
assets/images/ranking_top10_bottom10.png ADDED
assets/images/saturation.png ADDED
assets/images/task_vs_mean.png ADDED
assets/images/thumbnail.png ADDED
assets/images/timewise_analysis_full.png ADDED
assets/images/timewise_analysis_light.png ADDED
assets/images/v2_correlation_heatmap.png ADDED
assets/images/v2_fn_of_mmlu.png ADDED
dist/assets/images/ifeval_score_per_model_type.png ADDED
dist/assets/images/math_fn_gsm8k.png ADDED
dist/assets/images/math_score_per_model_type.png ADDED
dist/assets/images/normalized_vs_raw_scores.png ADDED
dist/assets/images/ranking_top10_bottom10.png ADDED
dist/assets/images/saturation.png ADDED
dist/assets/images/task_vs_mean.png ADDED
dist/assets/images/thumbnail.png ADDED
dist/assets/images/timewise_analysis_full.png ADDED
dist/assets/images/timewise_analysis_light.png ADDED
dist/assets/images/v2_correlation_heatmap.png ADDED
dist/assets/images/v2_fn_of_mmlu.png ADDED
dist/bibliography.bib ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @article{radford2019language,
2
+ title={Language Models are Unsupervised Multitask Learners},
3
+ author={Radford, Alec and Wu, Jeff and Child, Rewon and Luan, David and Amodei, Dario and Sutskever, Ilya},
4
+ year={2019}
5
+ }
6
+ @inproceedings{barbaresi-2021-trafilatura,
7
+ title = {Trafilatura: A Web Scraping Library and Command-Line Tool for Text Discovery and Extraction},
8
+ author = "Barbaresi, Adrien",
9
+ booktitle = "Proceedings of the Joint Conference of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing: System Demonstrations",
10
+ pages = "122--131",
11
+ publisher = "Association for Computational Linguistics",
12
+ url = "https://aclanthology.org/2021.acl-demo.15",
13
+ year = 2021,
14
+ }
15
+ @misc{penedo2023refinedweb,
16
+ title={The RefinedWeb Dataset for Falcon LLM: Outperforming Curated Corpora with Web Data, and Web Data Only},
17
+ author={Guilherme Penedo and Quentin Malartic and Daniel Hesslow and Ruxandra Cojocaru and Alessandro Cappelli and Hamza Alobeidli and Baptiste Pannier and Ebtesam Almazrouei and Julien Launay},
18
+ year={2023},
19
+ eprint={2306.01116},
20
+ archivePrefix={arXiv},
21
+ primaryClass={cs.CL}
22
+ }
23
+ @article{joulin2016fasttext,
24
+ title={FastText.zip: Compressing text classification models},
25
+ author={Joulin, Armand and Grave, Edouard and Bojanowski, Piotr and Douze, Matthijs and J{\'e}gou, H{\'e}rve and Mikolov, Tomas},
26
+ journal={arXiv preprint arXiv:1612.03651},
27
+ year={2016}
28
+ }
29
+ @article{joulin2016bag,
30
+ title={Bag of Tricks for Efficient Text Classification},
31
+ author={Joulin, Armand and Grave, Edouard and Bojanowski, Piotr and Mikolov, Tomas},
32
+ journal={arXiv preprint arXiv:1607.01759},
33
+ year={2016}
34
+ }
35
+ @misc{penedo2024datatrove,
36
+ author = {Penedo, Guilherme and Kydlíček, Hynek and Cappelli, Alessandro and Sasko, Mario and Wolf, Thomas},
37
+ title = {DataTrove: large scale data processing},
38
+ year = {2024},
39
+ publisher = {GitHub},
40
+ journal = {GitHub repository},
41
+ url = {https://github.com/huggingface/datatrove}
42
+ }
43
+ @misc{chiang2024chatbot,
44
+ title={Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference},
45
+ author={Wei-Lin Chiang and Lianmin Zheng and Ying Sheng and Anastasios Nikolas Angelopoulos and Tianle Li and Dacheng Li and Hao Zhang and Banghua Zhu and Michael Jordan and Joseph E. Gonzalez and Ion Stoica},
46
+ year={2024},
47
+ eprint={2403.04132},
48
+ archivePrefix={arXiv},
49
+ primaryClass={cs.AI}
50
+ }
51
+ @misc{rae2022scaling,
52
+ title={Scaling Language Models: Methods, Analysis & Insights from Training Gopher},
53
+ author={Jack W. Rae and Sebastian Borgeaud and Trevor Cai and Katie Millican and Jordan Hoffmann and Francis Song and John Aslanides and Sarah Henderson and Roman Ring and Susannah Young and Eliza Rutherford and Tom Hennigan and Jacob Menick and Albin Cassirer and Richard Powell and George van den Driessche and Lisa Anne Hendricks and Maribeth Rauh and Po-Sen Huang and Amelia Glaese and Johannes Welbl and Sumanth Dathathri and Saffron Huang and Jonathan Uesato and John Mellor and Irina Higgins and Antonia Creswell and Nat McAleese and Amy Wu and Erich Elsen and Siddhant Jayakumar and Elena Buchatskaya and David Budden and Esme Sutherland and Karen Simonyan and Michela Paganini and Laurent Sifre and Lena Martens and Xiang Lorraine Li and Adhiguna Kuncoro and Aida Nematzadeh and Elena Gribovskaya and Domenic Donato and Angeliki Lazaridou and Arthur Mensch and Jean-Baptiste Lespiau and Maria Tsimpoukelli and Nikolai Grigorev and Doug Fritz and Thibault Sottiaux and Mantas Pajarskas and Toby Pohlen and Zhitao Gong and Daniel Toyama and Cyprien de Masson d'Autume and Yujia Li and Tayfun Terzi and Vladimir Mikulik and Igor Babuschkin and Aidan Clark and Diego de Las Casas and Aurelia Guy and Chris Jones and James Bradbury and Matthew Johnson and Blake Hechtman and Laura Weidinger and Iason Gabriel and William Isaac and Ed Lockhart and Simon Osindero and Laura Rimell and Chris Dyer and Oriol Vinyals and Kareem Ayoub and Jeff Stanway and Lorrayne Bennett and Demis Hassabis and Koray Kavukcuoglu and Geoffrey Irving},
54
+ year={2022},
55
+ eprint={2112.11446},
56
+ archivePrefix={arXiv},
57
+ primaryClass={cs.CL}
58
+ }
59
+ @misc{lee2022deduplicating,
60
+ title={Deduplicating Training Data Makes Language Models Better},
61
+ author={Katherine Lee and Daphne Ippolito and Andrew Nystrom and Chiyuan Zhang and Douglas Eck and Chris Callison-Burch and Nicholas Carlini},
62
+ year={2022},
63
+ eprint={2107.06499},
64
+ archivePrefix={arXiv},
65
+ primaryClass={cs.CL}
66
+ }
67
+ @misc{carlini2023quantifying,
68
+ title={Quantifying Memorization Across Neural Language Models},
69
+ author={Nicholas Carlini and Daphne Ippolito and Matthew Jagielski and Katherine Lee and Florian Tramer and Chiyuan Zhang},
70
+ year={2023},
71
+ eprint={2202.07646},
72
+ archivePrefix={arXiv},
73
+ primaryClass={cs.LG}
74
+ }
75
+ @misc{raffel2023exploring,
76
+ title={Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer},
77
+ author={Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu},
78
+ year={2023},
79
+ eprint={1910.10683},
80
+ archivePrefix={arXiv},
81
+ primaryClass={cs.LG}
82
+ }
83
+ @misc{touvron2023llama,
84
+ title={LLaMA: Open and Efficient Foundation Language Models},
85
+ author={Hugo Touvron and Thibaut Lavril and Gautier Izacard and Xavier Martinet and Marie-Anne Lachaux and Timothée Lacroix and Baptiste Rozière and Naman Goyal and Eric Hambro and Faisal Azhar and Aurelien Rodriguez and Armand Joulin and Edouard Grave and Guillaume Lample},
86
+ year={2023},
87
+ eprint={2302.13971},
88
+ archivePrefix={arXiv},
89
+ primaryClass={cs.CL}
90
+ }
91
+ @article{dolma,
92
+ title = {Dolma: an Open Corpus of Three Trillion Tokens for Language Model Pretraining Research},
93
+ author={
94
+ Luca Soldaini and Rodney Kinney and Akshita Bhagia and Dustin Schwenk and David Atkinson and
95
+ Russell Authur and Ben Bogin and Khyathi Chandu and Jennifer Dumas and Yanai Elazar and
96
+ Valentin Hofmann and Ananya Harsh Jha and Sachin Kumar and Li Lucy and Xinxi Lyu and
97
+ Nathan Lambert and Ian Magnusson and Jacob Morrison and Niklas Muennighoff and Aakanksha Naik and
98
+ Crystal Nam and Matthew E. Peters and Abhilasha Ravichander and Kyle Richardson and Zejiang Shen and
99
+ Emma Strubell and Nishant Subramani and Oyvind Tafjord and Pete Walsh and Luke Zettlemoyer and
100
+ Noah A. Smith and Hannaneh Hajishirzi and Iz Beltagy and Dirk Groeneveld and Jesse Dodge and Kyle Lo
101
+ },
102
+ year = {2024},
103
+ journal={arXiv preprint},
104
+ }
105
+ @article{gao2020pile,
106
+ title={The {P}ile: An 800{GB} dataset of diverse text for language modeling},
107
+ author={Gao, Leo and Biderman, Stella and Black, Sid and Golding, Laurence and Hoppe, Travis and Foster, Charles and Phang, Jason and He, Horace and Thite, Anish and Nabeshima, Noa and others},
108
+ journal={arXiv preprint arXiv:2101.00027},
109
+ year={2020}
110
+ }
111
+ @misc{cerebras2023slimpajama,
112
+ author = {Soboleva, Daria and Al-Khateeb, Faisal and Myers, Robert and Steeves, Jacob R and Hestness, Joel and Dey, Nolan},
113
+ title = {SlimPajama: A 627B token cleaned and deduplicated version of RedPajama},
114
+ month = {June},
115
+ year = 2023,
116
+ url = {https://huggingface.co/datasets/cerebras/SlimPajama-627B},
117
+ }
118
+ @software{together2023redpajama,
119
+ author = {Together Computer},
120
+ title = {RedPajama: an Open Dataset for Training Large Language Models},
121
+ month = {October},
122
+ year = 2023,
123
+ url = {https://github.com/togethercomputer/RedPajama-Data}
124
+ }
125
+ @article{jaccard1912distribution,
126
+ title={The distribution of the flora in the alpine zone. 1},
127
+ author={Jaccard, Paul},
128
+ journal={New phytologist},
129
+ volume={11},
130
+ number={2},
131
+ pages={37--50},
132
+ year={1912},
133
+ publisher={Wiley Online Library}
134
+ }
135
+ @misc{albalak2024survey,
136
+ title={A Survey on Data Selection for Language Models},
137
+ author={Alon Albalak and Yanai Elazar and Sang Michael Xie and Shayne Longpre and Nathan Lambert and Xinyi Wang and Niklas Muennighoff and Bairu Hou and Liangming Pan and Haewon Jeong and Colin Raffel and Shiyu Chang and Tatsunori Hashimoto and William Yang Wang},
138
+ year={2024},
139
+ eprint={2402.16827},
140
+ archivePrefix={arXiv},
141
+ primaryClass={cs.CL}
142
+ }
143
+ @misc{longpre2023pretrainers,
144
+ title={A Pretrainer's Guide to Training Data: Measuring the Effects of Data Age, Domain Coverage, Quality, & Toxicity},
145
+ author={Shayne Longpre and Gregory Yauney and Emily Reif and Katherine Lee and Adam Roberts and Barret Zoph and Denny Zhou and Jason Wei and Kevin Robinson and David Mimno and Daphne Ippolito},
146
+ year={2023},
147
+ eprint={2305.13169},
148
+ archivePrefix={arXiv},
149
+ primaryClass={cs.CL}
150
+ }
151
+ @misc{wenzek2019ccnet,
152
+ title={CCNet: Extracting High Quality Monolingual Datasets from Web Crawl Data},
153
+ author={Guillaume Wenzek and Marie-Anne Lachaux and Alexis Conneau and Vishrav Chaudhary and Francisco GuzmΓ‘n and Armand Joulin and Edouard Grave},
154
+ year={2019},
155
+ eprint={1911.00359},
156
+ archivePrefix={arXiv},
157
+ primaryClass={cs.CL}
158
+ }
159
+ @misc{soldaini2024dolma,
160
+ title={Dolma: an Open Corpus of Three Trillion Tokens for Language Model Pretraining Research},
161
+ author={Luca Soldaini and Rodney Kinney and Akshita Bhagia and Dustin Schwenk and David Atkinson and Russell Authur and Ben Bogin and Khyathi Chandu and Jennifer Dumas and Yanai Elazar and Valentin Hofmann and Ananya Harsh Jha and Sachin Kumar and Li Lucy and Xinxi Lyu and Nathan Lambert and Ian Magnusson and Jacob Morrison and Niklas Muennighoff and Aakanksha Naik and Crystal Nam and Matthew E. Peters and Abhilasha Ravichander and Kyle Richardson and Zejiang Shen and Emma Strubell and Nishant Subramani and Oyvind Tafjord and Pete Walsh and Luke Zettlemoyer and Noah A. Smith and Hannaneh Hajishirzi and Iz Beltagy and Dirk Groeneveld and Jesse Dodge and Kyle Lo},
162
+ year={2024},
163
+ eprint={2402.00159},
164
+ archivePrefix={arXiv},
165
+ primaryClass={cs.CL}
166
+ }
167
+ @misc{ouyang2022training,
168
+ title={Training language models to follow instructions with human feedback},
169
+ author={Long Ouyang and Jeff Wu and Xu Jiang and Diogo Almeida and Carroll L. Wainwright and Pamela Mishkin and Chong Zhang and Sandhini Agarwal and Katarina Slama and Alex Ray and John Schulman and Jacob Hilton and Fraser Kelton and Luke Miller and Maddie Simens and Amanda Askell and Peter Welinder and Paul Christiano and Jan Leike and Ryan Lowe},
170
+ year={2022},
171
+ eprint={2203.02155},
172
+ archivePrefix={arXiv},
173
+ primaryClass={cs.CL}
174
+ }
175
+ @misc{hoffmann2022training,
176
+ title={Training Compute-Optimal Large Language Models},
177
+ author={Jordan Hoffmann and Sebastian Borgeaud and Arthur Mensch and Elena Buchatskaya and Trevor Cai and Eliza Rutherford and Diego de Las Casas and Lisa Anne Hendricks and Johannes Welbl and Aidan Clark and Tom Hennigan and Eric Noland and Katie Millican and George van den Driessche and Bogdan Damoc and Aurelia Guy and Simon Osindero and Karen Simonyan and Erich Elsen and Jack W. Rae and Oriol Vinyals and Laurent Sifre},
178
+ year={2022},
179
+ eprint={2203.15556},
180
+ archivePrefix={arXiv},
181
+ primaryClass={cs.CL}
182
+ }
183
+ @misc{muennighoff2023scaling,
184
+ title={Scaling Data-Constrained Language Models},
185
+ author={Niklas Muennighoff and Alexander M. Rush and Boaz Barak and Teven Le Scao and Aleksandra Piktus and Nouamane Tazi and Sampo Pyysalo and Thomas Wolf and Colin Raffel},
186
+ year={2023},
187
+ eprint={2305.16264},
188
+ archivePrefix={arXiv},
189
+ primaryClass={cs.CL}
190
+ }
191
+ @misc{hernandez2022scaling,
192
+ title={Scaling Laws and Interpretability of Learning from Repeated Data},
193
+ author={Danny Hernandez and Tom Brown and Tom Conerly and Nova DasSarma and Dawn Drain and Sheer El-Showk and Nelson Elhage and Zac Hatfield-Dodds and Tom Henighan and Tristan Hume and Scott Johnston and Ben Mann and Chris Olah and Catherine Olsson and Dario Amodei and Nicholas Joseph and Jared Kaplan and Sam McCandlish},
194
+ year={2022},
195
+ eprint={2205.10487},
196
+ archivePrefix={arXiv},
197
+ primaryClass={cs.LG}
198
+ }
199
+ @article{llama3modelcard,
200
+
201
+ title={Llama 3 Model Card},
202
+
203
+ author={AI@Meta},
204
+
205
+ year={2024},
206
+
207
+ url = {https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md}
208
+
209
+ }
210
+ @misc{jiang2024mixtral,
211
+ title={Mixtral of Experts},
212
+ author={Albert Q. Jiang and Alexandre Sablayrolles and Antoine Roux and Arthur Mensch and Blanche Savary and Chris Bamford and Devendra Singh Chaplot and Diego de las Casas and Emma Bou Hanna and Florian Bressand and Gianna Lengyel and Guillaume Bour and Guillaume Lample and LΓ©lio Renard Lavaud and Lucile Saulnier and Marie-Anne Lachaux and Pierre Stock and Sandeep Subramanian and Sophia Yang and Szymon Antoniak and Teven Le Scao and ThΓ©ophile Gervet and Thibaut Lavril and Thomas Wang and TimothΓ©e Lacroix and William El Sayed},
213
+ year={2024},
214
+ eprint={2401.04088},
215
+ archivePrefix={arXiv},
216
+ primaryClass={cs.LG}
217
+ }
218
+ @article{yuan2024self,
219
+ title={Self-rewarding language models},
220
+ author={Yuan, Weizhe and Pang, Richard Yuanzhe and Cho, Kyunghyun and Sukhbaatar, Sainbayar and Xu, Jing and Weston, Jason},
221
+ journal={arXiv preprint arXiv:2401.10020},
222
+ year={2024}
223
+ }
224
+ @article{verga2024replacing,
225
+ title={Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models},
226
+ author={Verga, Pat and Hofstatter, Sebastian and Althammer, Sophia and Su, Yixuan and Piktus, Aleksandra and Arkhangorodsky, Arkady and Xu, Minjie and White, Naomi and Lewis, Patrick},
227
+ journal={arXiv preprint arXiv:2404.18796},
228
+ year={2024}
229
+ }
230
+ @article{abdin2024phi,
231
+ title={Phi-3 technical report: A highly capable language model locally on your phone},
232
+ author={Abdin, Marah and Jacobs, Sam Ade and Awan, Ammar Ahmad and Aneja, Jyoti and Awadallah, Ahmed and Awadalla, Hany and Bach, Nguyen and Bahree, Amit and Bakhtiari, Arash and Behl, Harkirat and others},
233
+ journal={arXiv preprint arXiv:2404.14219},
234
+ year={2024}
235
+ }
236
+ @misc{meta2024responsible,
237
+ title = {Our responsible approach to Meta AI and Meta Llama 3},
238
+ author = {Meta},
239
+ year = {2024},
240
+ url = {https://ai.meta.com/blog/meta-llama-3-meta-ai-responsibility/},
241
+ note = {Accessed: 2024-05-31}
242
+ }
243
+ @inproceedings{talmor-etal-2019-commonsenseqa,
244
+ title = "CommonsenseQA: A Question Answering Challenge Targeting Commonsense Knowledge",
245
+ author = "Talmor, Alon and
246
+ Herzig, Jonathan and
247
+ Lourie, Nicholas and
248
+ Berant, Jonathan",
249
+ booktitle = "Proceedings of the 2019 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers)",
250
+ month = jun,
251
+ year = "2019",
252
+ address = "Minneapolis, Minnesota",
253
+ publisher = "Association for Computational Linguistics",
254
+ url = "https://aclanthology.org/N19-1421",
255
+ doi = "10.18653/v1/N19-1421",
256
+ pages = "4149--4158",
257
+ archivePrefix = "arXiv",
258
+ eprint = "1811.00937",
259
+ primaryClass = "cs",
260
+ }
261
+ @inproceedings{zellers-etal-2019-hellaswag,
262
+ title = "HellaSwag: Can a Machine Really Finish Your Sentence?",
263
+ author = "Zellers, Rowan and
264
+ Holtzman, Ari and
265
+ Bisk, Yonatan and
266
+ Farhadi, Ali and
267
+ Choi, Yejin",
268
+ editor = "Korhonen, Anna and
269
+ Traum, David and
270
+ M{\`a}rquez, Llu{\'\i}s",
271
+ booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
272
+ month = jul,
273
+ year = "2019",
274
+ address = "Florence, Italy",
275
+ publisher = "Association for Computational Linguistics",
276
+ url = "https://aclanthology.org/P19-1472",
277
+ doi = "10.18653/v1/P19-1472",
278
+ pages = "4791--4800",
279
+ abstract = "Recent work by Zellers et al. (2018) introduced a new task of commonsense natural language inference: given an event description such as {``}A woman sits at a piano,{''} a machine must select the most likely followup: {``}She sets her fingers on the keys.{''} With the introduction of BERT, near human-level performance was reached. Does this mean that machines can perform human level commonsense inference? In this paper, we show that commonsense inference still proves difficult for even state-of-the-art models, by presenting HellaSwag, a new challenge dataset. Though its questions are trivial for humans ({\textgreater}95{\%} accuracy), state-of-the-art models struggle ({\textless}48{\%}). We achieve this via Adversarial Filtering (AF), a data collection paradigm wherein a series of discriminators iteratively select an adversarial set of machine-generated wrong answers. AF proves to be surprisingly robust. The key insight is to scale up the length and complexity of the dataset examples towards a critical {`}Goldilocks{'} zone wherein generated text is ridiculous to humans, yet often misclassified by state-of-the-art models. Our construction of HellaSwag, and its resulting difficulty, sheds light on the inner workings of deep pretrained models. More broadly, it suggests a new path forward for NLP research, in which benchmarks co-evolve with the evolving state-of-the-art in an adversarial way, so as to present ever-harder challenges.",
280
+ }
281
+ @inproceedings{OpenBookQA2018,
282
+ title={Can a Suit of Armor Conduct Electricity? A New Dataset for Open Book Question Answering},
283
+ author={Todor Mihaylov and Peter Clark and Tushar Khot and Ashish Sabharwal},
284
+ booktitle={EMNLP},
285
+ year={2018}
286
+ }
287
+ @misc{bisk2019piqa,
288
+ title={PIQA: Reasoning about Physical Commonsense in Natural Language},
289
+ author={Yonatan Bisk and Rowan Zellers and Ronan Le Bras and Jianfeng Gao and Yejin Choi},
290
+ year={2019},
291
+ eprint={1911.11641},
292
+ archivePrefix={arXiv},
293
+ primaryClass={cs.CL}
294
+ }
295
+ @misc{sap2019socialiqa,
296
+ title={SocialIQA: Commonsense Reasoning about Social Interactions},
297
+ author={Maarten Sap and Hannah Rashkin and Derek Chen and Ronan LeBras and Yejin Choi},
298
+ year={2019},
299
+ eprint={1904.09728},
300
+ archivePrefix={arXiv},
301
+ primaryClass={cs.CL}
302
+ }
303
+ @misc{sakaguchi2019winogrande,
304
+ title={WinoGrande: An Adversarial Winograd Schema Challenge at Scale},
305
+ author={Keisuke Sakaguchi and Ronan Le Bras and Chandra Bhagavatula and Yejin Choi},
306
+ year={2019},
307
+ eprint={1907.10641},
308
+ archivePrefix={arXiv},
309
+ primaryClass={cs.CL}
310
+ }
311
+ @misc{clark2018think,
312
+ title={Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge},
313
+ author={Peter Clark and Isaac Cowhey and Oren Etzioni and Tushar Khot and Ashish Sabharwal and Carissa Schoenick and Oyvind Tafjord},
314
+ year={2018},
315
+ eprint={1803.05457},
316
+ archivePrefix={arXiv},
317
+ primaryClass={cs.AI}
318
+ }
319
+ @misc{hendrycks2021measuring,
320
+ title={Measuring Massive Multitask Language Understanding},
321
+ author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt},
322
+ year={2021},
323
+ eprint={2009.03300},
324
+ archivePrefix={arXiv},
325
+ primaryClass={cs.CY}
326
+ }
327
+ @misc{mitchell2023measuring,
328
+ title={Measuring Data},
329
+ author={Margaret Mitchell and Alexandra Sasha Luccioni and Nathan Lambert and Marissa Gerchick and Angelina McMillan-Major and Ezinwanne Ozoani and Nazneen Rajani and Tristan Thrush and Yacine Jernite and Douwe Kiela},
330
+ year={2023},
331
+ eprint={2212.05129},
332
+ archivePrefix={arXiv},
333
+ primaryClass={cs.AI}
334
+ }
dist/distill.bundle.js ADDED
The diff for this file is too large to render. See raw diff
 
dist/distill.bundle.js.map ADDED
The diff for this file is too large to render. See raw diff
 
dist/index.html ADDED
The diff for this file is too large to render. See raw diff
 
dist/main.bundle.js ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ (()=>{"use strict";var e=function(){document.querySelectorAll(".plotly-graph-div").forEach((function(e){console.log(e.parentElement.parentElement.offsetWidth),e.parentElement.parentElement.offsetWidth>0&&Plotly.relayout(e,{width:e.parentElement.parentElement.offsetWidth})}))};document.addEventListener("DOMContentLoaded",(function(){e(),window.addEventListener("resize",e)}),{once:!0})})();
2
+ //# sourceMappingURL=main.bundle.js.map
dist/main.bundle.js.map ADDED
@@ -0,0 +1 @@
 
 
1
+ {"version":3,"file":"main.bundle.js","mappings":"mBAIA,IAAMA,EAAkB,WACNC,SAASC,iBAAiB,qBAClCC,SAAQ,SAAAC,GACVC,QAAQC,IAAIF,EAAKG,cAAcA,cAAcC,aACzCJ,EAAKG,cAAcA,cAAcC,YAAc,GAC/CC,OAAOC,SAASN,EAAM,CAClBO,MAAOP,EAAKG,cAAcA,cAAcC,aAGpD,GACJ,ECbAP,SAASW,iBAAiB,oBAAoB,WDiB1CZ,IACAa,OAAOD,iBAAiB,SAAUZ,EChBtC,GAAG,CAAEc,MAAM,G","sources":["webpack://blogpost/./src/plotting.js","webpack://blogpost/./src/index.js"],"sourcesContent":["\n\n// Get all plots on the page\n// \nconst updatePlotSizes = () => {\n const plots = document.querySelectorAll('.plotly-graph-div');\n plots.forEach(plot => {\n console.log(plot.parentElement.parentElement.offsetWidth);\n if (plot.parentElement.parentElement.offsetWidth > 0) {\n Plotly.relayout(plot, {\n width: plot.parentElement.parentElement.offsetWidth,\n });\n }\n });\n}\n\n// Function to update plot sizes\nexport function initResizing() {\n updatePlotSizes();\n window.addEventListener('resize', updatePlotSizes);\n}\n\n// Add event listener for window resize\n","import { initResizing } from \"./plotting\";\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n initResizing();\n}, { once: true });"],"names":["updatePlotSizes","document","querySelectorAll","forEach","plot","console","log","parentElement","offsetWidth","Plotly","relayout","width","addEventListener","window","once"],"sourceRoot":""}
dist/style.css ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* style.css */
2
+ /* Define colors */
3
+ :root {
4
+ --distill-gray: rgb(107, 114, 128);
5
+ --distill-gray-light: rgb(185, 185, 185);
6
+ --distill-gray-lighter: rgb(228, 228, 228);
7
+ --distill-gray-lightest: rgb(245, 245, 245);
8
+ --distill-blue: #007BFF;
9
+ }
10
+
11
+ /* Container for the controls */
12
+ [id^="plot-"] {
13
+ display: flex;
14
+ flex-direction: column;
15
+ align-items: center;
16
+ gap: 15px; /* Adjust the gap between controls as needed */
17
+ }
18
+ [id^="plot-"] figure {
19
+ margin-bottom: 0px;
20
+ margin-top: 0px;
21
+ padding: 0px;
22
+ }
23
+
24
+ .plotly_caption {
25
+ font-style: italic;
26
+ margin-top: 10px;
27
+ }
28
+
29
+ .plotly_controls {
30
+ display: flex;
31
+ flex-wrap: wrap;
32
+ flex-direction: row;
33
+ justify-content: center;
34
+ align-items: flex-start;
35
+ gap: 30px;
36
+ }
37
+
38
+
39
+ .plotly_input_container {
40
+ display: flex;
41
+ align-items: center;
42
+ flex-direction: column;
43
+ gap: 10px;
44
+ }
45
+
46
+ /* Style for the select dropdown */
47
+ .plotly_input_container > select {
48
+ padding: 2px 4px;
49
+ /* border: 1px solid #ccc; */
50
+ line-height: 1.5em;
51
+ text-align: center;
52
+ border-radius: 4px;
53
+ font-size: 12px;
54
+ background-color: var(--distill-gray-lightest);
55
+ outline: none;
56
+ }
57
+
58
+ /* Style for the range input */
59
+
60
+ .plotly_slider {
61
+ display: flex;
62
+ align-items: center;
63
+ gap: 10px;
64
+ }
65
+
66
+ .plotly_slider > input[type="range"] {
67
+ -webkit-appearance: none;
68
+ height: 2px;
69
+ background: var(--distill-gray-light);
70
+ border-radius: 5px;
71
+ outline: none;
72
+ }
73
+
74
+ .plotly_slider > span {
75
+ font-size: 14px;
76
+ line-height: 1.6em;
77
+ min-width: 16px;
78
+ }
79
+
80
+ .plotly_slider > input[type="range"]::-webkit-slider-thumb {
81
+ -webkit-appearance: none;
82
+ appearance: none;
83
+ width: 18px;
84
+ height: 18px;
85
+ border-radius: 50%;
86
+ background: var(--distill-blue);
87
+ cursor: pointer;
88
+ }
89
+
90
+ .plotly_slider > input[type="range"]::-moz-range-thumb {
91
+ width: 18px;
92
+ height: 18px;
93
+ border-radius: 50%;
94
+ background: var(--distill-blue);
95
+ cursor: pointer;
96
+ }
97
+
98
+ /* Style for the labels */
99
+ .plotly_input_container > label {
100
+ font-size: 14px;
101
+ font-weight: bold;
102
+ }
103
+
104
+ .main-plot-container {
105
+ margin-top: 21px;
106
+ margin-bottom: 35px;
107
+ }
108
+
109
+ .main-plot-container > figure {
110
+ display: block !important;
111
+ /* Let this be handled by graph-container */
112
+ margin-bottom: 0px;
113
+ margin-top: 0px;
114
+ }
115
+ .main-plot-container > div {
116
+ display: none !important;
117
+ }
118
+
119
+
120
+ @media (min-width: 768px) {
121
+ .main-plot-container > figure {
122
+ display: none !important;
123
+ }
124
+ .main-plot-container > div {
125
+ display: flex !important;
126
+ }
127
+ }
128
+
129
+ d-byline .byline {
130
+ grid-template-columns: 1fr;
131
+ grid-column: text;
132
+ font-size: 0.9rem;
133
+ line-height: 1.8em;
134
+ }
135
+
136
+ @media (min-width: 768px) {
137
+ d-byline .byline {
138
+ grid-template-columns: 5fr 1fr 1fr;
139
+ }
140
+ }
141
+
142
+ d-contents > nav a.active {
143
+ text-decoration: underline;
144
+ }
145
+
146
+ @media (max-width: 1199px) {
147
+ d-contents {
148
+ display: none;
149
+ justify-self: start;
150
+ align-self: start;
151
+ padding-bottom: 0.5em;
152
+ margin-bottom: 1em;
153
+ padding-left: 0.25em;
154
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
155
+ border-bottom-width: 1px;
156
+ border-bottom-style: solid;
157
+ border-bottom-color: rgba(0, 0, 0, 0.1);
158
+ }
159
+ }
160
+
161
+ d-contents a:hover {
162
+ border-bottom: none;
163
+ }
164
+
165
+
166
+ @media (min-width: 1200px) {
167
+ d-article {
168
+ /* Ensure d-article does not prevent sticky positioning */
169
+ overflow: visible;
170
+ }
171
+
172
+ d-contents {
173
+ align-self: start;
174
+ grid-column-start: 1 !important;
175
+ grid-column-end: 4 !important;
176
+ grid-row: auto / span 6;
177
+ justify-self: end;
178
+ margin-top: 0em;
179
+ padding-right: 3em;
180
+ padding-left: 2em;
181
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
182
+ border-right-width: 1px;
183
+ border-right-style: solid;
184
+ border-right-color: rgba(0, 0, 0, 0.1);
185
+ position: -webkit-sticky; /* For Safari */
186
+ position: sticky;
187
+ top: 10px; /* Adjust this value if needed */
188
+ }
189
+ }
190
+
191
+ d-contents nav h3 {
192
+ margin-top: 0;
193
+ margin-bottom: 1em;
194
+ }
195
+
196
+ d-contents nav div {
197
+ color: rgba(0, 0, 0, 0.8);
198
+ font-weight: bold;
199
+ }
200
+
201
+ d-contents nav a {
202
+ color: rgba(0, 0, 0, 0.8);
203
+ border-bottom: none;
204
+ text-decoration: none;
205
+ }
206
+
207
+ d-contents li {
208
+ list-style-type: none;
209
+ }
210
+
211
+ d-contents ul, d-article d-contents ul {
212
+ padding-left: 1em;
213
+ }
214
+
215
+ d-contents nav ul li {
216
+ margin-bottom: .25em;
217
+ }
218
+
219
+ d-contents nav a:hover {
220
+ text-decoration: underline solid rgba(0, 0, 0, 0.6);
221
+ }
222
+
223
+ d-contents nav ul {
224
+ margin-top: 0;
225
+ margin-bottom: 6px;
226
+ }
227
+
228
+
229
+ d-contents nav > div {
230
+ display: block;
231
+ outline: none;
232
+ margin-bottom: 0.5em;
233
+ }
234
+
235
+ d-contents nav > div > a {
236
+ font-size: 13px;
237
+ font-weight: 600;
238
+ }
239
+
240
+ d-article aside {
241
+ margin-bottom: 1em;
242
+ }
243
+
244
+ @media (min-width: 768px) {
245
+ d-article aside {
246
+ margin-bottom: 0;
247
+ }
248
+ }
249
+
250
+ d-contents nav > div > a:hover,
251
+ d-contents nav > ul > li > a:hover {
252
+ text-decoration: none;
253
+ }
254
+
notebooks/v1_v2_analysis.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
notebooks/v1_v2_clem-final.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
notebooks/v2_analysis.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
package-lock.json ADDED
The diff for this file is too large to render. See raw diff
 
package.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dependencies": {
3
+ "lodash": "^4.17.21",
4
+ "papaparse": "^5.4.1",
5
+ "plotly.js-basic-dist-min": "^2.33.0"
6
+ },
7
+ "name": "blogpost",
8
+ "version": "1.0.0",
9
+ "description": "--- title: \"FineWeb: 15T tokens of high quality web data\" emoji: 🍷 colorFrom: pink colorTo: red sdk: static pinned: false header: mini ---",
10
+ "main": "index.js",
11
+ "scripts": {
12
+ "dev": "webpack serve --open",
13
+ "build": "NODE_ENV=production webpack"
14
+ },
15
+ "author": "",
16
+ "license": "ISC",
17
+ "devDependencies": {
18
+ "@babel/preset-env": "^7.24.6",
19
+ "babel-loader": "^9.1.3",
20
+ "clean-webpack-plugin": "^4.0.0",
21
+ "compression-webpack-plugin": "^11.1.0",
22
+ "copy-webpack-plugin": "^12.0.2",
23
+ "css-loader": "^7.1.2",
24
+ "handlebars": "^4.7.8",
25
+ "html-webpack-change-assets-extension-plugin": "^1.3.1",
26
+ "html-webpack-plugin": "^5.6.0",
27
+ "style-loader": "^4.0.0",
28
+ "webpack": "^5.91.0",
29
+ "webpack-bundle-analyzer": "^4.10.2",
30
+ "webpack-cli": "^5.1.4",
31
+ "webpack-dev-server": "^5.0.4"
32
+ }
33
+ }
src/bibliography.bib ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @article{radford2019language,
2
+ title={Language Models are Unsupervised Multitask Learners},
3
+ author={Radford, Alec and Wu, Jeff and Child, Rewon and Luan, David and Amodei, Dario and Sutskever, Ilya},
4
+ year={2019}
5
+ }
6
+ @inproceedings{barbaresi-2021-trafilatura,
7
+ title = {Trafilatura: A Web Scraping Library and Command-Line Tool for Text Discovery and Extraction},
8
+ author = "Barbaresi, Adrien",
9
+ booktitle = "Proceedings of the Joint Conference of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing: System Demonstrations",
10
+ pages = "122--131",
11
+ publisher = "Association for Computational Linguistics",
12
+ url = "https://aclanthology.org/2021.acl-demo.15",
13
+ year = 2021,
14
+ }
15
+ @misc{penedo2023refinedweb,
16
+ title={The RefinedWeb Dataset for Falcon LLM: Outperforming Curated Corpora with Web Data, and Web Data Only},
17
+ author={Guilherme Penedo and Quentin Malartic and Daniel Hesslow and Ruxandra Cojocaru and Alessandro Cappelli and Hamza Alobeidli and Baptiste Pannier and Ebtesam Almazrouei and Julien Launay},
18
+ year={2023},
19
+ eprint={2306.01116},
20
+ archivePrefix={arXiv},
21
+ primaryClass={cs.CL}
22
+ }
23
+ @article{joulin2016fasttext,
24
+ title={FastText.zip: Compressing text classification models},
25
+ author={Joulin, Armand and Grave, Edouard and Bojanowski, Piotr and Douze, Matthijs and J{\'e}gou, H{\'e}rve and Mikolov, Tomas},
26
+ journal={arXiv preprint arXiv:1612.03651},
27
+ year={2016}
28
+ }
29
+ @article{joulin2016bag,
30
+ title={Bag of Tricks for Efficient Text Classification},
31
+ author={Joulin, Armand and Grave, Edouard and Bojanowski, Piotr and Mikolov, Tomas},
32
+ journal={arXiv preprint arXiv:1607.01759},
33
+ year={2016}
34
+ }
35
+ @misc{penedo2024datatrove,
36
+ author = {Penedo, Guilherme and Kydlíček, Hynek and Cappelli, Alessandro and Sasko, Mario and Wolf, Thomas},
37
+ title = {DataTrove: large scale data processing},
38
+ year = {2024},
39
+ publisher = {GitHub},
40
+ journal = {GitHub repository},
41
+ url = {https://github.com/huggingface/datatrove}
42
+ }
43
+ @misc{chiang2024chatbot,
44
+ title={Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference},
45
+ author={Wei-Lin Chiang and Lianmin Zheng and Ying Sheng and Anastasios Nikolas Angelopoulos and Tianle Li and Dacheng Li and Hao Zhang and Banghua Zhu and Michael Jordan and Joseph E. Gonzalez and Ion Stoica},
46
+ year={2024},
47
+ eprint={2403.04132},
48
+ archivePrefix={arXiv},
49
+ primaryClass={cs.AI}
50
+ }
51
+ @misc{rae2022scaling,
52
+ title={Scaling Language Models: Methods, Analysis & Insights from Training Gopher},
53
+ author={Jack W. Rae and Sebastian Borgeaud and Trevor Cai and Katie Millican and Jordan Hoffmann and Francis Song and John Aslanides and Sarah Henderson and Roman Ring and Susannah Young and Eliza Rutherford and Tom Hennigan and Jacob Menick and Albin Cassirer and Richard Powell and George van den Driessche and Lisa Anne Hendricks and Maribeth Rauh and Po-Sen Huang and Amelia Glaese and Johannes Welbl and Sumanth Dathathri and Saffron Huang and Jonathan Uesato and John Mellor and Irina Higgins and Antonia Creswell and Nat McAleese and Amy Wu and Erich Elsen and Siddhant Jayakumar and Elena Buchatskaya and David Budden and Esme Sutherland and Karen Simonyan and Michela Paganini and Laurent Sifre and Lena Martens and Xiang Lorraine Li and Adhiguna Kuncoro and Aida Nematzadeh and Elena Gribovskaya and Domenic Donato and Angeliki Lazaridou and Arthur Mensch and Jean-Baptiste Lespiau and Maria Tsimpoukelli and Nikolai Grigorev and Doug Fritz and Thibault Sottiaux and Mantas Pajarskas and Toby Pohlen and Zhitao Gong and Daniel Toyama and Cyprien de Masson d'Autume and Yujia Li and Tayfun Terzi and Vladimir Mikulik and Igor Babuschkin and Aidan Clark and Diego de Las Casas and Aurelia Guy and Chris Jones and James Bradbury and Matthew Johnson and Blake Hechtman and Laura Weidinger and Iason Gabriel and William Isaac and Ed Lockhart and Simon Osindero and Laura Rimell and Chris Dyer and Oriol Vinyals and Kareem Ayoub and Jeff Stanway and Lorrayne Bennett and Demis Hassabis and Koray Kavukcuoglu and Geoffrey Irving},
54
+ year={2022},
55
+ eprint={2112.11446},
56
+ archivePrefix={arXiv},
57
+ primaryClass={cs.CL}
58
+ }
59
+ @misc{lee2022deduplicating,
60
+ title={Deduplicating Training Data Makes Language Models Better},
61
+ author={Katherine Lee and Daphne Ippolito and Andrew Nystrom and Chiyuan Zhang and Douglas Eck and Chris Callison-Burch and Nicholas Carlini},
62
+ year={2022},
63
+ eprint={2107.06499},
64
+ archivePrefix={arXiv},
65
+ primaryClass={cs.CL}
66
+ }
67
+ @misc{carlini2023quantifying,
68
+ title={Quantifying Memorization Across Neural Language Models},
69
+ author={Nicholas Carlini and Daphne Ippolito and Matthew Jagielski and Katherine Lee and Florian Tramer and Chiyuan Zhang},
70
+ year={2023},
71
+ eprint={2202.07646},
72
+ archivePrefix={arXiv},
73
+ primaryClass={cs.LG}
74
+ }
75
+ @misc{raffel2023exploring,
76
+ title={Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer},
77
+ author={Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu},
78
+ year={2023},
79
+ eprint={1910.10683},
80
+ archivePrefix={arXiv},
81
+ primaryClass={cs.LG}
82
+ }
83
+ @misc{touvron2023llama,
84
+ title={LLaMA: Open and Efficient Foundation Language Models},
85
+ author={Hugo Touvron and Thibaut Lavril and Gautier Izacard and Xavier Martinet and Marie-Anne Lachaux and Timothée Lacroix and Baptiste Rozière and Naman Goyal and Eric Hambro and Faisal Azhar and Aurelien Rodriguez and Armand Joulin and Edouard Grave and Guillaume Lample},
86
+ year={2023},
87
+ eprint={2302.13971},
88
+ archivePrefix={arXiv},
89
+ primaryClass={cs.CL}
90
+ }
91
+ @article{dolma,
92
+ title = {Dolma: an Open Corpus of Three Trillion Tokens for Language Model Pretraining Research},
93
+ author={
94
+ Luca Soldaini and Rodney Kinney and Akshita Bhagia and Dustin Schwenk and David Atkinson and
95
+ Russell Authur and Ben Bogin and Khyathi Chandu and Jennifer Dumas and Yanai Elazar and
96
+ Valentin Hofmann and Ananya Harsh Jha and Sachin Kumar and Li Lucy and Xinxi Lyu and
97
+ Nathan Lambert and Ian Magnusson and Jacob Morrison and Niklas Muennighoff and Aakanksha Naik and
98
+ Crystal Nam and Matthew E. Peters and Abhilasha Ravichander and Kyle Richardson and Zejiang Shen and
99
+ Emma Strubell and Nishant Subramani and Oyvind Tafjord and Pete Walsh and Luke Zettlemoyer and
100
+ Noah A. Smith and Hannaneh Hajishirzi and Iz Beltagy and Dirk Groeneveld and Jesse Dodge and Kyle Lo
101
+ },
102
+ year = {2024},
103
+ journal={arXiv preprint},
104
+ }
105
+ @article{gao2020pile,
106
+ title={The {P}ile: An 800{GB} dataset of diverse text for language modeling},
107
+ author={Gao, Leo and Biderman, Stella and Black, Sid and Golding, Laurence and Hoppe, Travis and Foster, Charles and Phang, Jason and He, Horace and Thite, Anish and Nabeshima, Noa and others},
108
+ journal={arXiv preprint arXiv:2101.00027},
109
+ year={2020}
110
+ }
111
+ @misc{cerebras2023slimpajama,
112
+ author = {Soboleva, Daria and Al-Khateeb, Faisal and Myers, Robert and Steeves, Jacob R and Hestness, Joel and Dey, Nolan},
113
+ title = {SlimPajama: A 627B token cleaned and deduplicated version of RedPajama},
114
+ month = {June},
115
+ year = 2023,
116
+ url = {https://huggingface.co/datasets/cerebras/SlimPajama-627B},
117
+ }
118
+ @software{together2023redpajama,
119
+ author = {Together Computer},
120
+ title = {RedPajama: an Open Dataset for Training Large Language Models},
121
+ month = {October},
122
+ year = 2023,
123
+ url = {https://github.com/togethercomputer/RedPajama-Data}
124
+ }
125
+ @article{jaccard1912distribution,
126
+ title={The distribution of the flora in the alpine zone. 1},
127
+ author={Jaccard, Paul},
128
+ journal={New phytologist},
129
+ volume={11},
130
+ number={2},
131
+ pages={37--50},
132
+ year={1912},
133
+ publisher={Wiley Online Library}
134
+ }
135
+ @misc{albalak2024survey,
136
+ title={A Survey on Data Selection for Language Models},
137
+ author={Alon Albalak and Yanai Elazar and Sang Michael Xie and Shayne Longpre and Nathan Lambert and Xinyi Wang and Niklas Muennighoff and Bairu Hou and Liangming Pan and Haewon Jeong and Colin Raffel and Shiyu Chang and Tatsunori Hashimoto and William Yang Wang},
138
+ year={2024},
139
+ eprint={2402.16827},
140
+ archivePrefix={arXiv},
141
+ primaryClass={cs.CL}
142
+ }
143
+ @misc{longpre2023pretrainers,
144
+ title={A Pretrainer's Guide to Training Data: Measuring the Effects of Data Age, Domain Coverage, Quality, & Toxicity},
145
+ author={Shayne Longpre and Gregory Yauney and Emily Reif and Katherine Lee and Adam Roberts and Barret Zoph and Denny Zhou and Jason Wei and Kevin Robinson and David Mimno and Daphne Ippolito},
146
+ year={2023},
147
+ eprint={2305.13169},
148
+ archivePrefix={arXiv},
149
+ primaryClass={cs.CL}
150
+ }
151
+ @misc{wenzek2019ccnet,
152
+ title={CCNet: Extracting High Quality Monolingual Datasets from Web Crawl Data},
153
+ author={Guillaume Wenzek and Marie-Anne Lachaux and Alexis Conneau and Vishrav Chaudhary and Francisco GuzmΓ‘n and Armand Joulin and Edouard Grave},
154
+ year={2019},
155
+ eprint={1911.00359},
156
+ archivePrefix={arXiv},
157
+ primaryClass={cs.CL}
158
+ }
159
+ @misc{soldaini2024dolma,
160
+ title={Dolma: an Open Corpus of Three Trillion Tokens for Language Model Pretraining Research},
161
+ author={Luca Soldaini and Rodney Kinney and Akshita Bhagia and Dustin Schwenk and David Atkinson and Russell Authur and Ben Bogin and Khyathi Chandu and Jennifer Dumas and Yanai Elazar and Valentin Hofmann and Ananya Harsh Jha and Sachin Kumar and Li Lucy and Xinxi Lyu and Nathan Lambert and Ian Magnusson and Jacob Morrison and Niklas Muennighoff and Aakanksha Naik and Crystal Nam and Matthew E. Peters and Abhilasha Ravichander and Kyle Richardson and Zejiang Shen and Emma Strubell and Nishant Subramani and Oyvind Tafjord and Pete Walsh and Luke Zettlemoyer and Noah A. Smith and Hannaneh Hajishirzi and Iz Beltagy and Dirk Groeneveld and Jesse Dodge and Kyle Lo},
162
+ year={2024},
163
+ eprint={2402.00159},
164
+ archivePrefix={arXiv},
165
+ primaryClass={cs.CL}
166
+ }
167
+ @misc{ouyang2022training,
168
+ title={Training language models to follow instructions with human feedback},
169
+ author={Long Ouyang and Jeff Wu and Xu Jiang and Diogo Almeida and Carroll L. Wainwright and Pamela Mishkin and Chong Zhang and Sandhini Agarwal and Katarina Slama and Alex Ray and John Schulman and Jacob Hilton and Fraser Kelton and Luke Miller and Maddie Simens and Amanda Askell and Peter Welinder and Paul Christiano and Jan Leike and Ryan Lowe},
170
+ year={2022},
171
+ eprint={2203.02155},
172
+ archivePrefix={arXiv},
173
+ primaryClass={cs.CL}
174
+ }
175
+ @misc{hoffmann2022training,
176
+ title={Training Compute-Optimal Large Language Models},
177
+ author={Jordan Hoffmann and Sebastian Borgeaud and Arthur Mensch and Elena Buchatskaya and Trevor Cai and Eliza Rutherford and Diego de Las Casas and Lisa Anne Hendricks and Johannes Welbl and Aidan Clark and Tom Hennigan and Eric Noland and Katie Millican and George van den Driessche and Bogdan Damoc and Aurelia Guy and Simon Osindero and Karen Simonyan and Erich Elsen and Jack W. Rae and Oriol Vinyals and Laurent Sifre},
178
+ year={2022},
179
+ eprint={2203.15556},
180
+ archivePrefix={arXiv},
181
+ primaryClass={cs.CL}
182
+ }
183
+ @misc{muennighoff2023scaling,
184
+ title={Scaling Data-Constrained Language Models},
185
+ author={Niklas Muennighoff and Alexander M. Rush and Boaz Barak and Teven Le Scao and Aleksandra Piktus and Nouamane Tazi and Sampo Pyysalo and Thomas Wolf and Colin Raffel},
186
+ year={2023},
187
+ eprint={2305.16264},
188
+ archivePrefix={arXiv},
189
+ primaryClass={cs.CL}
190
+ }
191
+ @misc{hernandez2022scaling,
192
+ title={Scaling Laws and Interpretability of Learning from Repeated Data},
193
+ author={Danny Hernandez and Tom Brown and Tom Conerly and Nova DasSarma and Dawn Drain and Sheer El-Showk and Nelson Elhage and Zac Hatfield-Dodds and Tom Henighan and Tristan Hume and Scott Johnston and Ben Mann and Chris Olah and Catherine Olsson and Dario Amodei and Nicholas Joseph and Jared Kaplan and Sam McCandlish},
194
+ year={2022},
195
+ eprint={2205.10487},
196
+ archivePrefix={arXiv},
197
+ primaryClass={cs.LG}
198
+ }
199
+ @article{llama3modelcard,
200
+
201
+ title={Llama 3 Model Card},
202
+
203
+ author={AI@Meta},
204
+
205
+ year={2024},
206
+
207
+ url = {https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md}
208
+
209
+ }
210
+ @misc{jiang2024mixtral,
211
+ title={Mixtral of Experts},
212
+ author={Albert Q. Jiang and Alexandre Sablayrolles and Antoine Roux and Arthur Mensch and Blanche Savary and Chris Bamford and Devendra Singh Chaplot and Diego de las Casas and Emma Bou Hanna and Florian Bressand and Gianna Lengyel and Guillaume Bour and Guillaume Lample and LΓ©lio Renard Lavaud and Lucile Saulnier and Marie-Anne Lachaux and Pierre Stock and Sandeep Subramanian and Sophia Yang and Szymon Antoniak and Teven Le Scao and ThΓ©ophile Gervet and Thibaut Lavril and Thomas Wang and TimothΓ©e Lacroix and William El Sayed},
213
+ year={2024},
214
+ eprint={2401.04088},
215
+ archivePrefix={arXiv},
216
+ primaryClass={cs.LG}
217
+ }
218
+ @article{yuan2024self,
219
+ title={Self-rewarding language models},
220
+ author={Yuan, Weizhe and Pang, Richard Yuanzhe and Cho, Kyunghyun and Sukhbaatar, Sainbayar and Xu, Jing and Weston, Jason},
221
+ journal={arXiv preprint arXiv:2401.10020},
222
+ year={2024}
223
+ }
224
+ @article{verga2024replacing,
225
+ title={Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models},
226
+ author={Verga, Pat and Hofstatter, Sebastian and Althammer, Sophia and Su, Yixuan and Piktus, Aleksandra and Arkhangorodsky, Arkady and Xu, Minjie and White, Naomi and Lewis, Patrick},
227
+ journal={arXiv preprint arXiv:2404.18796},
228
+ year={2024}
229
+ }
230
+ @article{abdin2024phi,
231
+ title={Phi-3 technical report: A highly capable language model locally on your phone},
232
+ author={Abdin, Marah and Jacobs, Sam Ade and Awan, Ammar Ahmad and Aneja, Jyoti and Awadallah, Ahmed and Awadalla, Hany and Bach, Nguyen and Bahree, Amit and Bakhtiari, Arash and Behl, Harkirat and others},
233
+ journal={arXiv preprint arXiv:2404.14219},
234
+ year={2024}
235
+ }
236
+ @misc{meta2024responsible,
237
+ title = {Our responsible approach to Meta AI and Meta Llama 3},
238
+ author = {Meta},
239
+ year = {2024},
240
+ url = {https://ai.meta.com/blog/meta-llama-3-meta-ai-responsibility/},
241
+ note = {Accessed: 2024-05-31}
242
+ }
243
+ @inproceedings{talmor-etal-2019-commonsenseqa,
244
+ title = "CommonsenseQA: A Question Answering Challenge Targeting Commonsense Knowledge",
245
+ author = "Talmor, Alon and
246
+ Herzig, Jonathan and
247
+ Lourie, Nicholas and
248
+ Berant, Jonathan",
249
+ booktitle = "Proceedings of the 2019 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers)",
250
+ month = jun,
251
+ year = "2019",
252
+ address = "Minneapolis, Minnesota",
253
+ publisher = "Association for Computational Linguistics",
254
+ url = "https://aclanthology.org/N19-1421",
255
+ doi = "10.18653/v1/N19-1421",
256
+ pages = "4149--4158",
257
+ archivePrefix = "arXiv",
258
+ eprint = "1811.00937",
259
+ primaryClass = "cs",
260
+ }
261
+ @inproceedings{zellers-etal-2019-hellaswag,
262
+ title = "HellaSwag: Can a Machine Really Finish Your Sentence?",
263
+ author = "Zellers, Rowan and
264
+ Holtzman, Ari and
265
+ Bisk, Yonatan and
266
+ Farhadi, Ali and
267
+ Choi, Yejin",
268
+ editor = "Korhonen, Anna and
269
+ Traum, David and
270
+ M{\`a}rquez, Llu{\'\i}s",
271
+ booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
272
+ month = jul,
273
+ year = "2019",
274
+ address = "Florence, Italy",
275
+ publisher = "Association for Computational Linguistics",
276
+ url = "https://aclanthology.org/P19-1472",
277
+ doi = "10.18653/v1/P19-1472",
278
+ pages = "4791--4800",
279
+ abstract = "Recent work by Zellers et al. (2018) introduced a new task of commonsense natural language inference: given an event description such as {``}A woman sits at a piano,{''} a machine must select the most likely followup: {``}She sets her fingers on the keys.{''} With the introduction of BERT, near human-level performance was reached. Does this mean that machines can perform human level commonsense inference? In this paper, we show that commonsense inference still proves difficult for even state-of-the-art models, by presenting HellaSwag, a new challenge dataset. Though its questions are trivial for humans ({\textgreater}95{\%} accuracy), state-of-the-art models struggle ({\textless}48{\%}). We achieve this via Adversarial Filtering (AF), a data collection paradigm wherein a series of discriminators iteratively select an adversarial set of machine-generated wrong answers. AF proves to be surprisingly robust. The key insight is to scale up the length and complexity of the dataset examples towards a critical {`}Goldilocks{'} zone wherein generated text is ridiculous to humans, yet often misclassified by state-of-the-art models. Our construction of HellaSwag, and its resulting difficulty, sheds light on the inner workings of deep pretrained models. More broadly, it suggests a new path forward for NLP research, in which benchmarks co-evolve with the evolving state-of-the-art in an adversarial way, so as to present ever-harder challenges.",
280
+ }
281
+ @inproceedings{OpenBookQA2018,
282
+ title={Can a Suit of Armor Conduct Electricity? A New Dataset for Open Book Question Answering},
283
+ author={Todor Mihaylov and Peter Clark and Tushar Khot and Ashish Sabharwal},
284
+ booktitle={EMNLP},
285
+ year={2018}
286
+ }
287
+ @misc{bisk2019piqa,
288
+ title={PIQA: Reasoning about Physical Commonsense in Natural Language},
289
+ author={Yonatan Bisk and Rowan Zellers and Ronan Le Bras and Jianfeng Gao and Yejin Choi},
290
+ year={2019},
291
+ eprint={1911.11641},
292
+ archivePrefix={arXiv},
293
+ primaryClass={cs.CL}
294
+ }
295
+ @misc{sap2019socialiqa,
296
+ title={SocialIQA: Commonsense Reasoning about Social Interactions},
297
+ author={Maarten Sap and Hannah Rashkin and Derek Chen and Ronan LeBras and Yejin Choi},
298
+ year={2019},
299
+ eprint={1904.09728},
300
+ archivePrefix={arXiv},
301
+ primaryClass={cs.CL}
302
+ }
303
+ @misc{sakaguchi2019winogrande,
304
+ title={WinoGrande: An Adversarial Winograd Schema Challenge at Scale},
305
+ author={Keisuke Sakaguchi and Ronan Le Bras and Chandra Bhagavatula and Yejin Choi},
306
+ year={2019},
307
+ eprint={1907.10641},
308
+ archivePrefix={arXiv},
309
+ primaryClass={cs.CL}
310
+ }
311
+ @misc{clark2018think,
312
+ title={Think you have Solved Question Answering? Try ARC, the AI2 Reasoning Challenge},
313
+ author={Peter Clark and Isaac Cowhey and Oren Etzioni and Tushar Khot and Ashish Sabharwal and Carissa Schoenick and Oyvind Tafjord},
314
+ year={2018},
315
+ eprint={1803.05457},
316
+ archivePrefix={arXiv},
317
+ primaryClass={cs.AI}
318
+ }
319
+ @misc{hendrycks2021measuring,
320
+ title={Measuring Massive Multitask Language Understanding},
321
+ author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt},
322
+ year={2021},
323
+ eprint={2009.03300},
324
+ archivePrefix={arXiv},
325
+ primaryClass={cs.CY}
326
+ }
327
+ @misc{mitchell2023measuring,
328
+ title={Measuring Data},
329
+ author={Margaret Mitchell and Alexandra Sasha Luccioni and Nathan Lambert and Marissa Gerchick and Angelina McMillan-Major and Ezinwanne Ozoani and Nazneen Rajani and Tristan Thrush and Yacine Jernite and Douwe Kiela},
330
+ year={2023},
331
+ eprint={2212.05129},
332
+ archivePrefix={arXiv},
333
+ primaryClass={cs.AI}
334
+ }
src/colors.mjs ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // export const COLORS = [
2
+ // [255, 135, 65], // Bright Orange
3
+ // [96, 168, 176], // Ocean Blue
4
+ // [23, 17, 26], // Charcoal Black
5
+ // [141, 193, 86], // Fresh Green
6
+ // [208, 65, 83], // Soft Red
7
+ // [73, 85, 136], // Deep Blue
8
+ // [45, 68, 67], // Dark Forest Green
9
+ // [255, 206, 149], // Peach
10
+ // [241, 139, 105], // Salmon Pink
11
+ // [102, 45, 57], // Burgundy
12
+ // [174, 91, 57], // Brown
13
+ // [232, 158, 86], // Sand
14
+ // [255, 220, 106], // Sun Yellow
15
+ // [213, 246, 110], // Light Lime
16
+ // [74, 122, 71], // Moss Green
17
+ // [110, 81, 106], // Muted Purple
18
+ // [170, 140, 148], // Dusty Rose
19
+ // [223, 203, 191], // Soft Beige
20
+ // [255, 255, 255], // Pure White
21
+ // [255, 153, 169], // Light Pink
22
+ // [199, 102, 178], // Vivid Purple
23
+ // [131, 58, 149], // Deep Purple
24
+ // [59, 44, 74], // Dark Slate
25
+ // [154, 231, 201], // Aqua Green
26
+ // ]
27
+
28
+ export const COLORS = [
29
+ ["235", "102", "59"], // Burnt Orange
30
+ ["46", "145", "229"], // Sky Blue
31
+ ["225", "95", "153"], // Soft Magenta
32
+ ["28", "167", "28"], // Bright Green
33
+ // ["108", "69", "22"], // Dark Brown
34
+ ["167", "119", "241"], // Lavender
35
+ ["182", "129", "0"], // Mustard Yellow
36
+ ["134", "42", "22"], // Brick Red
37
+ ["0", "160", "139"], // Teal
38
+ ["175", "0", "56"], // Crimson
39
+ ["108", "124", "50"], // Olive Green
40
+ ["81", "28", "251"], // Royal Blue
41
+ ["218", "22", "255"], // Electric Purple
42
+ ["98", "0", "66"], // Dark Magenta
43
+ // ['34', '42', '42'], Black, which makes the text unreadable
44
+ // ["117", "13", "134"], // Deep Magenta
45
+ ["251", "0", "209"], // Hot Pink
46
+ ["252", "0", "128"], // Bright Pink
47
+ // ["178", "130", "141"], // Dusty Pink
48
+ ["119", "138", "174"], // Slate Blue
49
+ ["22", "22", "167"], // Deep Blue
50
+ ["218", "96", "202"], // Orchid
51
+ // ['13', '42', '99'], Black
52
+ ];
53
+
54
+
55
+
56
+
57
+ export const NAMED_COLORS = {
58
+ "red": ["251", "13", "13"], // Vivid Red
59
+ "black": ['13', '42', '99'], // Black
60
+ "blue": ["46", "145", "229"], // Sky Blue
61
+ };
62
+
63
+ export const getColor = (i, opacity=1) => {
64
+ if (i < 0) {
65
+ i = i * -1;
66
+ }
67
+ return `rgba(${COLORS[i % COLORS.length].join(",")}, ${opacity})`;
68
+ };
69
+
70
+ export const getNamedColor = (name, opacity=1) => {
71
+ if (NAMED_COLORS.hasOwnProperty(name)) {
72
+ return `rgba(${NAMED_COLORS[name].join(",")}, ${opacity})`;
73
+ } else {
74
+ return undefined; // Return undefined if name doesn't exist
75
+ }
76
+ };
77
+
src/distill.js ADDED
The diff for this file is too large to render. See raw diff
 
src/fragments/avg_ifeval_vs_all.html ADDED
@@ -0,0 +1 @@
 
 
1
+ <div> <div id="2dc75c59-79df-4f15-bf45-71b7ec7c5efe" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("2dc75c59-79df-4f15-bf45-71b7ec7c5efe")) { Plotly.newPlot( "2dc75c59-79df-4f15-bf45-71b7ec7c5efe", [{"hoverinfo":"all","marker":{"color":"#FF323D"},"mode":"markers","name":"Chat Models","text":["upstage\u002fSOLAR-10.7B-Instruct-v1.0","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-40b-instruct","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2-Mistral-7B","stabilityai\u002fstablelm-zephyr-3b","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-12b-chat","refuelai\u002fLlama-3-Refueled","openchat\u002fopenchat_3.5","openchat\u002fopenchat-3.5-1210","mlabonne\u002fOrpoLlama-3-8B","mlabonne\u002fNeuralDaredevil-8B-abliterated","mlabonne\u002fAlphaMonarch-7B","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.3","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","microsoft\u002fPhi-3-small-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fDialoGPT-medium","meta-llama\u002fMeta-Llama-3-8B-Instruct","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-13b-chat-hf","internlm\u002finternlm2-chat-1_8b","ibm\u002fmerlinite-7b","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","google\u002frecurrentgemma-2b-it","google\u002fgemma-7b-it","google\u002fgemma-2b-it","google\u002fgemma-1.1-7b-it","google\u002fgemma-1.1-2b-it","deepseek-ai\u002fdeepseek-moe-16b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","cognitivecomputations\u002fdolphin-2.9-llama3-8b","berkeley-nest\u002fStarling-LM-7B-alpha","argilla\u002fnotux-8x7b-v1","allenai\u002fOLMo-7B-Instruct-hf","abacusai\u002fSmaug-34B-v0.1","TencentARC\u002fLLaMA-Pro-8B-Instruct","Qwen\u002fQwen2-7B-Instruct","Qwen\u002fQwen2-72B-Instruct","Qwen\u002fQwen2-1.5B-Instruct","Qwen\u002fQwen2-0.5B-Instruct","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-0.5B-Chat","Open-Orca\u002fMistral-7B-OpenOrca","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","LLM360\u002fK2-Chat","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-alpha","Deci\u002fDeciLM-7B-instruct","CohereForAI\u002fc4ai-command-r-v01","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002faya-23-8B","CohereForAI\u002faya-23-35B","01-ai\u002fYi-6B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-34B-Chat"],"x":[19.96198910037107,5.224143354430813,10.662030971612849,21.5668000005151,21.67560934553434,12.60309577740402,9.498432832781326,8.865385364773465,16.528868066061186,23.085402384383887,21.878917705189114,22.928004487572135,15.159848592942154,22.400692912496094,17.913613949329132,24.728023968086458,19.447010021691572,18.77267341004123,13.855740703432188,29.16068060228012,26.358813854450805,25.876029923762406,33.11686401652233,5.458775192468141,24.29357895679186,36.670224625240515,9.64750920803739,13.014699871431032,11.264317817616549,10.756825963222544,17.041609439493804,18.44059506140815,8.294040437605839,13.115262918595386,7.444219925694604,17.721424519100726,8.007063269657525,10.391623888794859,15.063424379737667,27.26438561483008,18.624196317443467,20.986276595837733,24.507486215204057,10.987916220418041,24.127214101002167,15.440917127630984,25.145119510695622,43.0224180362466,14.20228620346751,6.600960947562641,15.117373891912484,16.8868411493638,12.596867001297822,27.50394865484468,21.36856780912501,29.639559939762638,9.24538329070223,5.77681186667438,17.94210040435002,23.690783600729116,22.132441017315738,27.34344110617293,21.362154508301845,25.007189681399584,21.992571996020157,21.983543202447425,23.288116355034536,16.1306112676892,18.035324594254,18.850736862089683,17.75126040411166,25.735168589206054,31.29533576157876,16.27657263734265,24.995879349603467,14.292512668359166,24.26841887652191,23.260288651945572,28.1114176619766,22.405531883132653,33.07681784692709],"y":[47.36609972650345,19.68886997610784,24.54487426694504,55.71417173100706,52.86151854856226,36.832271705740766,32.79310008555078,30.59991932516833,40.81647805600252,46.19952836252256,59.31118321608887,60.3678240402133,36.52752474545318,45.602556771588276,49.39438467710121,53.95062877609188,54.652544138441556,54.96227786717022,45.02298346165951,63.442776278053344,56.12884923115112,59.76331688807919,64.22713954529537,14.79042274498331,74.08398604591373,80.99077115387172,39.65245548478038,49.57922756065019,39.8472719052115,23.865454771118408,24.98703440205322,44.55588948434598,29.493299999556733,38.68324933398937,26.902950837112197,50.391073462856326,30.674831668860847,36.629919724109804,41.70822307034224,55.87153197959192,38.503393218881456,54.80491761858535,54.52765329326188,34.72652561869174,50.156252077820184,44.86063644463357,56.79075962889577,79.89168738945996,33.712327734854625,22.466610814860125,37.95385133667558,43.711574178734644,31.566576683200577,55.32199009738605,47.68082022367319,59.388644352540155,20.190982149585324,18.072713732895387,49.77659277384008,52.78660620486975,57.30783210769647,58.69670252707262,57.62510139762497,65.17883659800441,56.68337788179808,53.61839918084017,51.51763986223221,33.637415391162115,49.50431521695767,51.914808264294294,48.802399854608,67.48194789824333,76.64186580495308,46.98887839820566,64.61932117891638,33.95213588833185,46.98887839820566,42.14040966856828,60.455258713546726,48.023023355807034,60.66758423205982],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"#FF9D00"},"mode":"markers","name":"Fine-tuned Models","text":["togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fGPT-JT-6B-v1","teknium\u002fOpenHermes-7B","teknium\u002fOpenHermes-13B","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","openchat\u002fopenchat_v3.2_super","openchat\u002fopenchat_v3.2","mistral-community\u002fmixtral-8x22B-v0.3","microsoft\u002fOrca-2-7b","microsoft\u002fOrca-2-13b","lmsys\u002fvicuna-7b-v1.5","databricks\u002fdolly-v2-7b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-12b","abacusai\u002fSmaug-72B-v0.1","WizardLMTeam\u002fWizardLM-70B-V1.0","WizardLMTeam\u002fWizardLM-13B-V1.2","WizardLMTeam\u002fWizardLM-13B-V1.0","TencentARC\u002fMistral_Pro_8B_v0.1","TencentARC\u002fMetaMath-Mistral-Pro","TencentARC\u002fLLaMA-Pro-8B","PygmalionAI\u002fpygmalion-6b","OpenAssistant\u002foasst-sft-1-pythia-12b","NousResearch\u002fNous-Hermes-llama-2-7b","Nexusflow\u002fNexusRaven-V2-13B","Intel\u002fneural-chat-7b-v3-3","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","CausalLM\u002f14B"],"x":[5.877290499403223,4.950649056169291,6.548084227182674,4.160158459526323,8.40430897390543,6.93439968133643,5.145050982995508,7.050863394663338,9.722608152563426,12.38792642210653,14.517111685857857,13.109973131485312,14.08936736470505,25.933038566778535,14.430062022117255,18.450009819948523,11.040046675474356,5.782967201011895,5.656584399145012,6.601256964683983,29.97602232654488,22.678353582430713,15.444603080049198,4.746415879557472,14.478952518748692,12.274360797020016,9.018222555047677,5.6041766777314095,3.8585902115168556,9.519822174741984,8.534745248061597,20.32588235013024,21.782625883260096,21.34857259985854,18.25561809763723,4.105045758422495,16.834407720557678],"y":[21.24263620526869,16.521496296493304,20.55069437980115,15.57977278066641,21.300039450879225,18.649738250065383,18.297561581049393,20.610646418170454,18.12513021006485,26.680651781716954,27.904626391308398,28.61906408329898,29.805582521044165,25.826362939223486,21.986994507905692,31.27933882099496,23.515716077784724,20.098560707810833,22.471597583301197,23.550734273948677,51.7024827457812,49.514288753839814,33.92465325336773,18.504900331121426,21.145227995053123,21.18767093534045,22.77135777514772,20.910406610016974,10.553885911603434,17.290788441335657,17.90781792311068,47.62585495374495,49.883974520937784,46.868974321467036,27.779735546128713,16.968643200042553,27.882130524785346],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"#32343D"},"mode":"markers","name":"Pretrained Models","text":["upstage\u002fSOLAR-10.7B-v1.0","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-7B-Base","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-11B","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-12b","openai-community\u002fgpt2-xl","openai-community\u002fgpt2-medium","openai-community\u002fgpt2-large","openai-community\u002fgpt2","mosaicml\u002fmpt-7b","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMistral-7B-v0.1","mistral-community\u002fMistral-7B-v0.2","microsoft\u002fphi-2","microsoft\u002fphi-1_5","microsoft\u002fphi-1","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-13b-hf","internlm\u002finternlm2-1_8b","ibm-granite\u002fgranite-7b-base","gpt2","google\u002frecurrentgemma-2b","google\u002fgemma-7b","google\u002fgemma-2b","facebook\u002fopt-30b","facebook\u002fopt-1.3b","distilbert\u002fdistilgpt2","deepseek-ai\u002fdeepseek-moe-16b-base","deepseek-ai\u002fdeepseek-llm-7b-base","databricks\u002fdolly-v1-6b","bigscience\u002fbloom-7b1","bigscience\u002fbloom-560m","bigscience\u002fbloom-3b","bigscience\u002fbloom-1b7","bigscience\u002fbloom-1b1","bigcode\u002fstarcoder2-7b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-15b","allenai\u002fOLMo-1B-hf","TinyLlama\u002fTinyLlama_v1.1","Qwen\u002fQwen2-7B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-0.5B","NousResearch\u002fYarn-Solar-10b-64k","NousResearch\u002fYarn-Solar-10b-32k","NousResearch\u002fYarn-Mistral-7b-64k","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Llama-2-7b-64k","NousResearch\u002fYarn-Llama-2-7b-128k","EleutherAI\u002fpythia-6.9b","EleutherAI\u002fpythia-410m","EleutherAI\u002fpythia-2.8b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-12b","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-j-6b","Deci\u002fDeciLM-7B","01-ai\u002fYi-9B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B"],"x":[17.072002756045183,5.64509861763104,5.673484667201078,5.30645040429035,11.584480467645415,14.059253080582723,7.489854747985089,5.4225520861850365,14.13954707452123,5.18855418850635,6.030449229619656,5.691382412001716,6.728552491962861,6.199329342086597,19.560643927492677,14.44934992979528,14.785260744365251,14.43484067053602,15.73462019324716,7.278966381216524,5.734191079665647,13.683780215445202,26.747507552057343,8.957661805904921,18.563355240383846,11.246983307460837,8.819068110520002,7.9750956934141035,6.754202027787066,7.161433254672173,15.57154537859274,7.497753965443674,6.418752784161142,5.4599184140204216,4.095492189907072,7.594718625910112,8.335906029233032,7.117199021274858,3.90189407892886,3.647998207444871,4.459582941663769,4.16702395750896,4.160480642622511,8.439977829902261,6.756586683106207,12.484658606602396,6.69024912490018,4.903276740133232,24.027680504107995,10.572358828402633,7.2853847718504925,12.692287211098375,15.513969941824953,11.549390609506494,27.090416473303993,20.564789692680726,29.9753750223327,9.358391648266263,5.34318387184267,15.35001592410188,15.91418646233148,13.704086430765107,13.429588977244245,7.347248648399418,6.90837031768703,6.067306951555627,5.322979769100292,5.651452923973085,5.828624807279859,6.150025263258958,6.2080934311811795,6.562227474840892,5.5402354119549315,6.76507699088038,15.239300002315593,17.903955811276422,17.925354986040567,12.153788661442325,13.88194077906782,20.121929358758177,22.612245457968566,19.937832365595014,22.304731728901334,16.778059015115186,26.787599820170445,25.812197022082785],"y":[24.212644671693326,22.936253584932423,20.822971936683555,18.205140139274903,24.964538535530174,32.613243970442866,22.031986240951785,11.570521771122843,15.69214129620518,20.385798570016444,22.08440271812125,20.47822001179094,17.925327021192658,21.51990053059216,23.500755772461517,22.663976028050016,23.855481234236272,22.663976028050016,27.3875539125077,20.32839532440591,20.6805719934219,14.550614591506093,16.031906452656727,25.18938638368418,24.06780675274937,24.824687385027282,21.97702097102355,24.142719096441887,18.07770050133645,30.017908039557263,26.593217108383534,20.375825033134305,24.52991396162183,23.83298536771322,6.110010328151527,24.497444558216642,21.787191319033496,22.244311759464885,13.221696210499253,6.202431769926019,12.709610500139629,10.438968603305895,13.733781920858878,22.09193827932109,20.370838264693234,27.345110972220375,21.819660722438684,20.00613926603634,31.48667757106699,21.132705665412217,18.672234116588427,26.598203876824606,26.842998798742894,24.447466056729475,32.97295620065869,29.05368865720732,34.21942667677318,21.542396397115212,17.056077873375976,19.88867316498003,19.421579187666502,20.79548930171944,19.33669330709185,16.99856381068897,14.847825990593847,22.811362739752745,21.954525104500505,21.73222604910526,18.155161637787735,24.71475684517081,25.86880587951081,25.896288514474925,20.790502533278367,25.221855787089368,28.129474239462404,23.270921155866432,27.08779372066118,8.433068702154728,28.93378458046871,15.424850507763843,30.45751938190668,23.031113002389215,29.358435617494916,26.10606524022926,31.186917379220468,28.411725333226947],"type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"x":0,"y":1,"traceorder":"normal"},"title":{"text":"Average IFEval Scores by Model Type"},"yaxis":{"title":{"text":"IFEval Score"}},"xaxis":{"title":{"text":"Average score over all tasks"}}}, {"responsive": true} ) }; </script> </div>
src/fragments/correlation_heatmap.html ADDED
@@ -0,0 +1 @@
 
 
1
+ <div> <div id="c2dd8ed2-39c6-4581-8c09-72fafe8218b5" class="plotly-graph-div" style="height:500px; width:600px;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("c2dd8ed2-39c6-4581-8c09-72fafe8218b5")) { Plotly.newPlot( "c2dd8ed2-39c6-4581-8c09-72fafe8218b5", [{"coloraxis":"coloraxis","name":"0","texttemplate":"%{z:.2f}","x":["BBH","GPQA","IFEval","MATH Lvl 5","MMLU-PRO","MUSR"],"y":["BBH","GPQA","IFEval","MATH Lvl 5","MMLU-PRO","MUSR"],"z":[[1.0,0.8153919729552493,0.661769166150519,0.6822772431277823,0.9558310920162388,0.5931160384964032],[0.8153919729552493,1.0,0.41472523680524054,0.6757722508287399,0.8566605703519653,0.4657763767215251],[0.661769166150519,0.41472523680524054,1.0,0.43954256889421384,0.6156331821340444,0.3818377989350192],[0.6822772431277823,0.6757722508287399,0.43954256889421384,1.0,0.7128479086961653,0.33283385055620035],[0.9558310920162388,0.8566605703519653,0.6156331821340444,0.7128479086961653,1.0,0.5392034797480699],[0.5931160384964032,0.4657763767215251,0.3818377989350192,0.33283385055620035,0.5392034797480699,1.0]],"type":"heatmap","xaxis":"x","yaxis":"y","hovertemplate":"Benchmark: %{x}\u003cbr\u003eBenchmark: %{y}\u003cbr\u003eCorrelation: %{z}\u003cextra\u003e\u003c\u002fextra\u003e"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"scaleanchor":"y","constrain":"domain","title":{"text":"Benchmark"},"tickfont":{"size":10},"side":"bottom","tickangle":-45},"yaxis":{"anchor":"x","domain":[0.0,1.0],"autorange":"reversed","constrain":"domain","title":{"text":"Benchmark"}},"coloraxis":{"colorbar":{"title":{"text":"Correlation"}},"colorscale":[[0.0,"#f0f921"],[0.1111111111111111,"#fdca26"],[0.2222222222222222,"#fb9f3a"],[0.3333333333333333,"#ed7953"],[0.4444444444444444,"#d8576b"],[0.5555555555555556,"#bd3786"],[0.6666666666666666,"#9c179e"],[0.7777777777777778,"#7201a8"],[0.8888888888888888,"#46039f"],[1.0,"#0d0887"]],"showscale":false},"title":{"text":"Correlation Matrix Heatmap"},"height":500,"width":600}, {"responsive": true} ) }; </script> </div>
src/fragments/math_vs_avg_all.html ADDED
@@ -0,0 +1 @@
 
 
1
+ <div> <div id="e4c36ce6-151a-4002-b513-fcc65033fcde" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("e4c36ce6-151a-4002-b513-fcc65033fcde")) { Plotly.newPlot( "e4c36ce6-151a-4002-b513-fcc65033fcde", [{"hoverinfo":"all","marker":{"color":"#FF323D"},"mode":"markers","name":"Chat Models","text":["upstage\u002fSOLAR-10.7B-Instruct-v1.0","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-40b-instruct","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2-Mistral-7B","stabilityai\u002fstablelm-zephyr-3b","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-12b-chat","refuelai\u002fLlama-3-Refueled","openchat\u002fopenchat_3.5","openchat\u002fopenchat-3.5-1210","mlabonne\u002fOrpoLlama-3-8B","mlabonne\u002fNeuralDaredevil-8B-abliterated","mlabonne\u002fAlphaMonarch-7B","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.3","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","microsoft\u002fPhi-3-small-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fDialoGPT-medium","meta-llama\u002fMeta-Llama-3-8B-Instruct","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-13b-chat-hf","internlm\u002finternlm2-chat-1_8b","ibm\u002fmerlinite-7b","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","google\u002frecurrentgemma-2b-it","google\u002fgemma-7b-it","google\u002fgemma-2b-it","google\u002fgemma-1.1-7b-it","google\u002fgemma-1.1-2b-it","deepseek-ai\u002fdeepseek-moe-16b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","cognitivecomputations\u002fdolphin-2.9-llama3-8b","berkeley-nest\u002fStarling-LM-7B-alpha","argilla\u002fnotux-8x7b-v1","allenai\u002fOLMo-7B-Instruct-hf","abacusai\u002fSmaug-34B-v0.1","TencentARC\u002fLLaMA-Pro-8B-Instruct","Qwen\u002fQwen2-7B-Instruct","Qwen\u002fQwen2-72B-Instruct","Qwen\u002fQwen2-1.5B-Instruct","Qwen\u002fQwen2-0.5B-Instruct","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-0.5B-Chat","Open-Orca\u002fMistral-7B-OpenOrca","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","LLM360\u002fK2-Chat","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-alpha","Deci\u002fDeciLM-7B-instruct","CohereForAI\u002fc4ai-command-r-v01","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002faya-23-8B","CohereForAI\u002faya-23-35B","01-ai\u002fYi-6B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-34B-Chat"],"x":[19.96198910037107,5.224143354430813,10.662030971612849,21.5668000005151,21.67560934553434,12.60309577740402,9.498432832781326,8.865385364773465,16.528868066061186,23.085402384383887,21.878917705189114,22.928004487572135,15.159848592942154,22.400692912496094,17.913613949329132,24.728023968086458,19.447010021691572,18.77267341004123,13.855740703432188,29.16068060228012,26.358813854450805,25.876029923762406,33.11686401652233,5.458775192468141,24.29357895679186,36.670224625240515,9.64750920803739,13.014699871431032,11.264317817616549,10.756825963222544,17.041609439493804,18.44059506140815,8.294040437605839,13.115262918595386,7.444219925694604,17.721424519100726,8.007063269657525,10.391623888794859,15.063424379737667,27.26438561483008,18.624196317443467,20.986276595837733,24.507486215204057,10.987916220418041,24.127214101002167,15.440917127630984,25.145119510695622,43.0224180362466,14.20228620346751,6.600960947562641,15.117373891912484,16.8868411493638,12.596867001297822,27.50394865484468,21.36856780912501,29.639559939762638,9.24538329070223,5.77681186667438,17.94210040435002,23.690783600729116,22.132441017315738,27.34344110617293,21.362154508301845,25.007189681399584,21.992571996020157,21.983543202447425,23.288116355034536,16.1306112676892,18.035324594254,18.850736862089683,17.75126040411166,25.735168589206054,31.29533576157876,16.27657263734265,24.995879349603467,14.292512668359166,24.26841887652191,23.260288651945572,28.1114176619766,22.405531883132653,33.07681784692709],"y":[0.0,0.6042296072507553,1.5105740181268883,4.45619335347432,3.8519637462235647,4.078549848942599,2.1148036253776437,1.0574018126888218,2.0392749244712993,3.927492447129909,6.570996978851963,6.873111782477341,3.8519637462235647,8.006042296072508,3.8519637462235647,9.06344410876133,3.1722054380664653,2.643504531722054,1.5105740181268883,0.0,11.63141993957704,8.91238670694864,16.993957703927492,0.0,8.685800604229607,23.338368580060422,0.6797583081570997,0.906344410876133,0.6042296072507553,2.416918429003021,2.3413897280966767,4.380664652567976,1.7371601208459215,1.5861027190332326,0.4531722054380665,3.1722054380664653,0.1510574018126888,1.6616314199395772,1.7371601208459215,6.646525679758309,5.0604229607250755,7.175226586102719,8.685800604229607,0.6797583081570997,0.0,1.6616314199395772,8.610271903323262,35.12084592145015,5.81570996978852,1.6616314199395772,0.0,0.0,0.9818731117824773,6.646525679758309,0.0,0.0,0.4531722054380665,0.0,2.9456193353474323,5.211480362537765,1.7371601208459215,10.27190332326284,4.229607250755287,8.685800604229607,4.833836858006042,5.740181268882175,1.5861027190332326,6.646525679758309,2.416918429003021,1.5105740181268883,2.794561933534743,0.0,7.552870090634441,1.4350453172205437,2.643504531722054,0.6797583081570997,4.305135951661631,12.613293051359516,11.63141993957704,12.537764350453173,23.338368580060422],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"#FF9D00"},"mode":"markers","name":"Fine-tuned Models","text":["togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fGPT-JT-6B-v1","teknium\u002fOpenHermes-7B","teknium\u002fOpenHermes-13B","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","openchat\u002fopenchat_v3.2_super","openchat\u002fopenchat_v3.2","mistral-community\u002fmixtral-8x22B-v0.3","microsoft\u002fOrca-2-7b","microsoft\u002fOrca-2-13b","lmsys\u002fvicuna-7b-v1.5","databricks\u002fdolly-v2-7b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-12b","abacusai\u002fSmaug-72B-v0.1","WizardLMTeam\u002fWizardLM-70B-V1.0","WizardLMTeam\u002fWizardLM-13B-V1.2","WizardLMTeam\u002fWizardLM-13B-V1.0","TencentARC\u002fMistral_Pro_8B_v0.1","TencentARC\u002fMetaMath-Mistral-Pro","TencentARC\u002fLLaMA-Pro-8B","PygmalionAI\u002fpygmalion-6b","OpenAssistant\u002foasst-sft-1-pythia-12b","NousResearch\u002fNous-Hermes-llama-2-7b","Nexusflow\u002fNexusRaven-V2-13B","Intel\u002fneural-chat-7b-v3-3","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","CausalLM\u002f14B"],"x":[5.877290499403223,4.950649056169291,6.548084227182674,4.160158459526323,8.40430897390543,6.93439968133643,5.145050982995508,7.050863394663338,9.722608152563426,12.38792642210653,14.517111685857857,13.109973131485312,14.08936736470505,25.933038566778535,14.430062022117255,18.450009819948523,11.040046675474356,5.782967201011895,5.656584399145012,6.601256964683983,29.97602232654488,22.678353582430713,15.444603080049198,4.746415879557472,14.478952518748692,12.274360797020016,9.018222555047677,5.6041766777314095,3.8585902115168556,9.519822174741984,8.534745248061597,20.32588235013024,21.782625883260096,21.34857259985854,18.25561809763723,4.105045758422495,16.834407720557678],"y":[0.6042296072507553,0.3021148036253776,1.3595166163141994,0.1510574018126888,1.0574018126888218,0.6797583081570997,1.1329305135951662,0.7552870090634441,1.0574018126888218,0.8308157099697886,2.9456193353474323,1.5861027190332326,1.1329305135951662,16.842900302114806,0.8308157099697886,0.9818731117824773,0.7552870090634441,0.9818731117824773,0.6042296072507553,1.4350453172205437,17.749244712990937,3.474320241691843,1.7371601208459215,0.0,5.664652567975831,4.607250755287009,1.6616314199395772,0.6042296072507553,1.4350453172205437,0.6797583081570997,1.812688821752266,0.6797583081570997,4.531722054380665,3.1722054380664653,2.190332326283988,0.0,3.3232628398791544],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"#32343D"},"mode":"markers","name":"Pretrained Models","text":["upstage\u002fSOLAR-10.7B-v1.0","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-7B-Base","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-11B","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-12b","openai-community\u002fgpt2-xl","openai-community\u002fgpt2-medium","openai-community\u002fgpt2-large","openai-community\u002fgpt2","mosaicml\u002fmpt-7b","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMistral-7B-v0.1","mistral-community\u002fMistral-7B-v0.2","microsoft\u002fphi-2","microsoft\u002fphi-1_5","microsoft\u002fphi-1","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-13b-hf","internlm\u002finternlm2-1_8b","ibm-granite\u002fgranite-7b-base","gpt2","google\u002frecurrentgemma-2b","google\u002fgemma-7b","google\u002fgemma-2b","facebook\u002fopt-30b","facebook\u002fopt-1.3b","distilbert\u002fdistilgpt2","deepseek-ai\u002fdeepseek-moe-16b-base","deepseek-ai\u002fdeepseek-llm-7b-base","databricks\u002fdolly-v1-6b","bigscience\u002fbloom-7b1","bigscience\u002fbloom-560m","bigscience\u002fbloom-3b","bigscience\u002fbloom-1b7","bigscience\u002fbloom-1b1","bigcode\u002fstarcoder2-7b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-15b","allenai\u002fOLMo-1B-hf","TinyLlama\u002fTinyLlama_v1.1","Qwen\u002fQwen2-7B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-0.5B","NousResearch\u002fYarn-Solar-10b-64k","NousResearch\u002fYarn-Solar-10b-32k","NousResearch\u002fYarn-Mistral-7b-64k","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Llama-2-7b-64k","NousResearch\u002fYarn-Llama-2-7b-128k","EleutherAI\u002fpythia-6.9b","EleutherAI\u002fpythia-410m","EleutherAI\u002fpythia-2.8b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-12b","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-j-6b","Deci\u002fDeciLM-7B","01-ai\u002fYi-9B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B"],"x":[17.072002756045183,5.64509861763104,5.673484667201078,5.30645040429035,11.584480467645415,14.059253080582723,7.489854747985089,5.4225520861850365,14.13954707452123,5.18855418850635,6.030449229619656,5.691382412001716,6.728552491962861,6.199329342086597,19.560643927492677,14.44934992979528,14.785260744365251,14.43484067053602,15.73462019324716,7.278966381216524,5.734191079665647,13.683780215445202,26.747507552057343,8.957661805904921,18.563355240383846,11.246983307460837,8.819068110520002,7.9750956934141035,6.754202027787066,7.161433254672173,15.57154537859274,7.497753965443674,6.418752784161142,5.4599184140204216,4.095492189907072,7.594718625910112,8.335906029233032,7.117199021274858,3.90189407892886,3.647998207444871,4.459582941663769,4.16702395750896,4.160480642622511,8.439977829902261,6.756586683106207,12.484658606602396,6.69024912490018,4.903276740133232,24.027680504107995,10.572358828402633,7.2853847718504925,12.692287211098375,15.513969941824953,11.549390609506494,27.090416473303993,20.564789692680726,29.9753750223327,9.358391648266263,5.34318387184267,15.35001592410188,15.91418646233148,13.704086430765107,13.429588977244245,7.347248648399418,6.90837031768703,6.067306951555627,5.322979769100292,5.651452923973085,5.828624807279859,6.150025263258958,6.2080934311811795,6.562227474840892,5.5402354119549315,6.76507699088038,15.239300002315593,17.903955811276422,17.925354986040567,12.153788661442325,13.88194077906782,20.121929358758177,22.612245457968566,19.937832365595014,22.304731728901334,16.778059015115186,26.787599820170445,25.812197022082785],"y":[2.1148036253776437,0.906344410876133,0.9818731117824773,0.5287009063444109,1.3595166163141994,2.3413897280966767,0.6797583081570997,0.1510574018126888,3.474320241691843,0.3021148036253776,0.22658610271903326,0.6797583081570997,0.22658610271903326,1.283987915407855,8.836858006042297,2.643504531722054,2.492447129909366,2.643504531722054,2.416918429003021,1.1329305135951662,0.6797583081570997,3.2477341389728096,16.540785498489427,1.2084592145015105,2.492447129909366,1.0574018126888218,1.1329305135951662,0.6042296072507553,0.22658610271903326,1.6616314199395772,6.419939577039275,2.719033232628399,0.6042296072507553,0.7552870090634441,0.0,1.812688821752266,1.2084592145015105,1.3595166163141994,0.0,0.0755287009063444,0.0755287009063444,0.0755287009063444,0.1510574018126888,2.56797583081571,1.4350453172205437,4.833836858006042,0.7552870090634441,0.4531722054380665,18.806646525679756,6.268882175226587,2.56797583081571,0.1510574018126888,4.45619335347432,2.416918429003021,26.661631419939575,16.46525679758308,23.036253776435046,2.2658610271903323,0.4531722054380665,2.2658610271903323,2.416918429003021,3.0211480362537766,2.492447129909366,0.9818731117824773,0.7552870090634441,0.7552870090634441,0.3021148036253776,0.6797583081570997,0.22658610271903326,0.906344410876133,0.6042296072507553,0.5287009063444109,0.6797583081570997,1.2084592145015105,2.416918429003021,5.81570996978852,4.380664652567976,1.2084592145015105,1.5105740181268883,4.45619335347432,4.45619335347432,9.592145015105741,10.196374622356496,5.664652567975831,13.444108761329304,14.04833836858006],"type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"x":0,"y":1,"traceorder":"normal"},"title":{"text":"Average MATH Scores by Model Type"},"yaxis":{"title":{"text":"MATH lvl 5 Score"}},"xaxis":{"title":{"text":"Average score over all tasks"}}}, {"responsive": true} ) }; </script> </div>
src/fragments/math_vs_gsm8k.html ADDED
@@ -0,0 +1 @@
 
 
1
+ <div> <div id="890dcf4c-9118-4881-ada7-3c5a3486904d" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("890dcf4c-9118-4881-ada7-3c5a3486904d")) { Plotly.newPlot( "890dcf4c-9118-4881-ada7-3c5a3486904d", [{"hoverinfo":"all","marker":{"color":"#FF9D00"},"mode":"markers","name":"MATH Lvl 5=f(GSM8K)","text":["01-ai\u002fYi-1.5-34B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B-Chat","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-34B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-6B","01-ai\u002fYi-6B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-9B-200K","CausalLM\u002f14B","CohereForAI\u002faya-23-8B","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-v01","Deci\u002fDeciLM-7B","Deci\u002fDeciLM-7B-instruct","EleutherAI\u002fgpt-j-6b","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fpythia-12b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-410m","HuggingFaceH4\u002fzephyr-7b-alpha","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","Intel\u002fneural-chat-7b-v3","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-3","Nexusflow\u002fNexusRaven-V2-13B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-llama-2-7b","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Mistral-7b-64k","Open-Orca\u002fMistral-7B-OpenOrca","OpenAssistant\u002foasst-sft-1-pythia-12b","PygmalionAI\u002fpygmalion-6b","Qwen\u002fQwen1.5-0.5B","Qwen\u002fQwen1.5-0.5B-Chat","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-7B","TencentARC\u002fLLaMA-Pro-8B","TencentARC\u002fLLaMA-Pro-8B-Instruct","TencentARC\u002fMistral_Pro_8B_v0.1","abacusai\u002fSmaug-34B-v0.1","abacusai\u002fSmaug-72B-v0.1","allenai\u002fOLMo-1B-hf","allenai\u002fOLMo-1B-hf","argilla\u002fnotux-8x7b-v1","berkeley-nest\u002fStarling-LM-7B-alpha","berkeley-nest\u002fStarling-LM-7B-alpha","bigcode\u002fstarcoder2-15b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-7b","bigscience\u002fbloom-1b1","bigscience\u002fbloom-1b7","bigscience\u002fbloom-3b","bigscience\u002fbloom-560m","bigscience\u002fbloom-7b1","cognitivecomputations\u002fdolphin-2.9-llama3-8b","cognitivecomputations\u002fdolphin-2.9-llama3-8b","databricks\u002fdolly-v2-12b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-7b","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-moe-16b-base","facebook\u002fopt-1.3b","facebook\u002fopt-30b","google\u002fgemma-1.1-7b-it","google\u002fgemma-2b","google\u002fgemma-2b","google\u002fgemma-2b-it","google\u002fgemma-7b","google\u002fgemma-7b","google\u002fgemma-7b-it","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b-it","gpt2","gpt2","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","ibm\u002fmerlinite-7b","lmsys\u002fvicuna-7b-v1.5","lmsys\u002fvicuna-7b-v1.5","meta-llama\u002fLlama-2-13b-chat-hf","meta-llama\u002fLlama-2-13b-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B-Instruct","microsoft\u002fDialoGPT-medium","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-7b","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fphi-1_5","microsoft\u002fphi-2","microsoft\u002fphi-2","mistral-community\u002fMistral-7B-v0.2","mistral-community\u002fMistral-7B-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mlabonne\u002fAlphaMonarch-7B","mlabonne\u002fBeyonder-4x7B-v3","mlabonne\u002fOrpoLlama-3-8B","mosaicml\u002fmpt-7b","openai-community\u002fgpt2","openai-community\u002fgpt2-large","openchat\u002fopenchat-3.5-1210","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2_super","refuelai\u002fLlama-3-Refueled","refuelai\u002fLlama-3-Refueled","stabilityai\u002fstablelm-2-12b","stabilityai\u002fstablelm-2-12b-chat","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-zephyr-3b","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","teknium\u002fOpenHermes-13B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-7B","tiiuae\u002ffalcon-11B","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-7b-instruct","togethercomputer\u002fGPT-JT-6B-v1","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Base","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","upstage\u002fSOLAR-10.7B-Instruct-v1.0","upstage\u002fSOLAR-10.7B-v1.0"],"x":[73.23730098559514,0.0,71.64518574677786,50.34116755117514,49.81046247156937,67.09628506444277,62.69901440485216,0.0,71.87263078089462,59.66641394996209,50.644427596664144,34.874905231235786,19.787717968157693,31.91811978771797,12.661106899166036,12.130401819560273,31.387414708112203,30.32600454890068,48.9764973464746,47.61182714177407,58.605003790750565,43.51781652767248,70.73540561031083,47.30856709628507,56.633813495072026,47.384382107657316,46.019711902956786,2.9567854435178167,0.45489006823351025,1.288855193328279,5.458680818802123,1.7437452615617892,0.22744503411675512,0.6823351023502654,14.025777103866567,11.372251705837757,29.037149355572407,27.065959059893856,44.04852160727824,45.564821834723276,0.0,1.2130401819560273,18.11978771796816,19.56027293404094,19.408642911296436,20.0909780136467,55.117513267627,61.10689916603488,20.92494313874147,67.93025018953753,60.424564063684606,61.25852918877938,70.73540561031083,70.43214556482184,60.424564063684606,60.50037907505686,70.65959059893859,71.64518574677786,69.59818043972706,69.44655041698256,5.761940864291129,32.60045489006823,33.2827899924185,19.9393479909022,0.6065200909780136,2.047005307050796,16.300227445034114,7.657316148597422,33.586050037907505,19.02956785443518,81.04624715693708,30.09855951478393,67.62699014404852,30.856709628506447,30.62926459438969,61.10689916603488,60.87945413191812,7.050796057619409,52.23654283548142,2.4260803639120545,53.525398028809704,13.570887035633056,13.191811978771797,16.982562547384383,28.203184230477635,35.70887035633055,55.799848369977255,72.93404094010614,17.81652767247915,44.200151630022745,34.19257012888552,72.17589082638362,78.69598180439728,1.8953752843062925,1.8953752843062925,61.10689916603488,62.3199393479909,62.39575435936315,52.23654283548142,19.63608794541319,25.094768764215313,0.22744503411675512,0.8339651250947688,1.5163002274450341,0.3032600454890068,1.3646702047005308,64.6702047005307,64.44275966641395,1.2130401819560273,1.061410159211524,1.1372251705837757,63.68460955269143,62.3199393479909,46.550416982562545,45.94389689158454,17.28582259287339,0.1516300227445034,2.1986353297952994,42.98711144806672,17.36163760424564,16.90674753601213,5.458680818802123,50.87187263078089,52.76724791508719,29.18877937831691,16.148597422289612,15.693707354056102,10.083396512509477,0.6823351023502654,0.37907505686125853,44.351781652767244,55.420773313116,41.09173616376042,8.188021228203183,8.112206216830932,15.238817285822591,22.820318423047762,26.686884003032603,54.05610310841546,7.354056103108415,14.480667172100075,5.382865807429871,76.87642153146324,85.44351781652767,45.185746777862015,45.33737680060652,68.68840030326004,0.0,17.968157695223656,37.831690674753595,14.70811220621683,79.37831690674754,69.52236542835482,74.52615617892343,12.43366186504928,54.814253222137985,54.965883244882484,34.950720242608035,34.72327520849128,14.25322213798332,40.0303260045489,37.831690674753595,34.495830174374525,60.72782410917361,61.10689916603488,57.4677786201668,46.85367702805156,57.619408642911296,66.71721000758151,70.58377558756634,45.94389689158454,4.01819560272934,0.6823351023502654,0.8339651250947688,65.95905989385898,26.611068991660346,26.838514025777105,25.777103866565582,13.419257012888552,13.646702047005308,13.495072024260804,61.48597422289613,61.63760424564063,56.02729340409402,57.84685367702805,17.437452615617893,38.81728582259287,35.329795299469296,3.3358605003790753,42.15314632297195,35.860500379075056,11.599696739954512,25.473843821076574,26.080363912054587,5.003790750568612,53.82865807429871,21.455648218347235,4.624715693707354,4.624715693707354,4.700530705079606,1.2130401819560273,6.899166034874906,4.321455648218348,5.686125852918878,4.700530705079606,3.0326004548900682,0.45489006823351025,1.592115238817286,1.288855193328279,0.530705079605762,1.3646702047005308,64.74601971190296,55.49658832448825],"y":[14.04833836858006,13.444108761329304,23.338368580060422,5.664652567975831,5.664652567975831,12.537764350453173,10.196374622356496,9.592145015105741,11.63141993957704,12.613293051359516,4.45619335347432,4.45619335347432,4.305135951661631,4.305135951661631,1.5105740181268883,1.5105740181268883,1.2084592145015105,1.2084592145015105,4.380664652567976,5.81570996978852,3.3232628398791544,1.4350453172205437,7.552870090634441,7.552870090634441,0.0,2.416918429003021,2.794561933534743,1.2084592145015105,0.6797583081570997,0.5287009063444109,0.6042296072507553,0.906344410876133,0.22658610271903326,0.3021148036253776,1.5105740181268883,2.416918429003021,2.416918429003021,2.416918429003021,6.646525679758309,6.646525679758309,0.0,2.190332326283988,3.1722054380664653,3.1722054380664653,3.1722054380664653,3.1722054380664653,4.531722054380665,0.6797583081570997,1.812688821752266,5.740181268882175,4.833836858006042,4.833836858006042,8.685800604229607,8.685800604229607,4.229607250755287,4.229607250755287,10.27190332326284,10.27190332326284,1.7371601208459215,5.211480362537765,0.6797583081570997,2.492447129909366,3.0211480362537766,2.9456193353474323,1.4350453172205437,0.6042296072507553,0.4531722054380665,0.0,2.2658610271903323,0.4531722054380665,23.036253776435046,0.0,16.46525679758308,0.0,0.0,26.661631419939575,26.661631419939575,6.646525679758309,2.416918429003021,0.9818731117824773,4.45619335347432,0.0,0.0,0.1510574018126888,0.0,2.56797583081571,6.268882175226587,18.806646525679756,1.6616314199395772,1.6616314199395772,5.664652567975831,0.0,17.749244712990937,0.7552870090634441,0.7552870090634441,8.685800604229607,7.175226586102719,7.175226586102719,4.833836858006042,1.4350453172205437,2.56797583081571,0.1510574018126888,0.0755287009063444,0.0755287009063444,0.0755287009063444,0.0,5.0604229607250755,5.0604229607250755,1.4350453172205437,0.6042296072507553,0.9818731117824773,6.646525679758309,6.646525679758309,1.7371601208459215,1.7371601208459215,1.812688821752266,0.7552870090634441,0.6042296072507553,3.1722054380664653,2.719033232628399,2.719033232628399,0.4531722054380665,6.419939577039275,6.419939577039275,1.5861027190332326,1.6616314199395772,1.6616314199395772,1.7371601208459215,0.22658610271903326,0.22658610271903326,4.380664652567976,4.380664652567976,2.3413897280966767,0.7552870090634441,0.7552870090634441,0.6042296072507553,1.0574018126888218,0.906344410876133,2.492447129909366,0.6797583081570997,1.2084592145015105,1.2084592145015105,16.540785498489427,23.338368580060422,3.2477341389728096,3.2477341389728096,8.685800604229607,0.0,0.9818731117824773,0.9818731117824773,0.8308157099697886,16.993957703927492,8.91238670694864,11.63141993957704,1.1329305135951662,2.416918429003021,2.416918429003021,2.643504531722054,2.643504531722054,1.5105740181268883,2.643504531722054,2.492447129909366,2.643504531722054,9.06344410876133,9.06344410876133,8.836858006042297,8.836858006042297,8.836858006042297,3.8519637462235647,4.758308157099698,3.8519637462235647,1.283987915407855,0.22658610271903326,0.6797583081570997,6.873111782477341,6.570996978851963,6.570996978851963,6.570996978851963,1.1329305135951662,1.1329305135951662,1.5861027190332326,3.927492447129909,3.927492447129909,3.474320241691843,2.0392749244712993,0.1510574018126888,1.0574018126888218,2.1148036253776437,0.6797583081570997,4.078549848942599,2.9456193353474323,0.8308157099697886,4.45619335347432,4.45619335347432,1.0574018126888218,2.3413897280966767,1.3595166163141994,0.5287009063444109,0.6042296072507553,0.6042296072507553,0.7552870090634441,1.1329305135951662,0.6797583081570997,1.0574018126888218,1.0574018126888218,0.9818731117824773,0.1510574018126888,1.3595166163141994,0.906344410876133,0.3021148036253776,0.6042296072507553,0.0,2.1148036253776437],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"#FF323D"},"mode":"markers","name":"MATH Lvl 5=f(GSM8K)","text":["01-ai\u002fYi-1.5-34B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B-Chat","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-34B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-6B","01-ai\u002fYi-6B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-9B-200K","CausalLM\u002f14B","CohereForAI\u002faya-23-8B","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-v01","Deci\u002fDeciLM-7B","Deci\u002fDeciLM-7B-instruct","EleutherAI\u002fgpt-j-6b","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fpythia-12b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-410m","HuggingFaceH4\u002fzephyr-7b-alpha","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","Intel\u002fneural-chat-7b-v3","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-3","Nexusflow\u002fNexusRaven-V2-13B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-llama-2-7b","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Mistral-7b-64k","Open-Orca\u002fMistral-7B-OpenOrca","OpenAssistant\u002foasst-sft-1-pythia-12b","PygmalionAI\u002fpygmalion-6b","Qwen\u002fQwen1.5-0.5B","Qwen\u002fQwen1.5-0.5B-Chat","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-7B","TencentARC\u002fLLaMA-Pro-8B","TencentARC\u002fLLaMA-Pro-8B-Instruct","TencentARC\u002fMistral_Pro_8B_v0.1","abacusai\u002fSmaug-34B-v0.1","abacusai\u002fSmaug-72B-v0.1","allenai\u002fOLMo-1B-hf","allenai\u002fOLMo-1B-hf","argilla\u002fnotux-8x7b-v1","berkeley-nest\u002fStarling-LM-7B-alpha","berkeley-nest\u002fStarling-LM-7B-alpha","bigcode\u002fstarcoder2-15b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-7b","bigscience\u002fbloom-1b1","bigscience\u002fbloom-1b7","bigscience\u002fbloom-3b","bigscience\u002fbloom-560m","bigscience\u002fbloom-7b1","cognitivecomputations\u002fdolphin-2.9-llama3-8b","cognitivecomputations\u002fdolphin-2.9-llama3-8b","databricks\u002fdolly-v2-12b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-7b","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-moe-16b-base","facebook\u002fopt-1.3b","facebook\u002fopt-30b","google\u002fgemma-1.1-7b-it","google\u002fgemma-2b","google\u002fgemma-2b","google\u002fgemma-2b-it","google\u002fgemma-7b","google\u002fgemma-7b","google\u002fgemma-7b-it","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b-it","gpt2","gpt2","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","ibm\u002fmerlinite-7b","lmsys\u002fvicuna-7b-v1.5","lmsys\u002fvicuna-7b-v1.5","meta-llama\u002fLlama-2-13b-chat-hf","meta-llama\u002fLlama-2-13b-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B-Instruct","microsoft\u002fDialoGPT-medium","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-7b","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fphi-1_5","microsoft\u002fphi-2","microsoft\u002fphi-2","mistral-community\u002fMistral-7B-v0.2","mistral-community\u002fMistral-7B-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mlabonne\u002fAlphaMonarch-7B","mlabonne\u002fBeyonder-4x7B-v3","mlabonne\u002fOrpoLlama-3-8B","mosaicml\u002fmpt-7b","openai-community\u002fgpt2","openai-community\u002fgpt2-large","openchat\u002fopenchat-3.5-1210","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2_super","refuelai\u002fLlama-3-Refueled","refuelai\u002fLlama-3-Refueled","stabilityai\u002fstablelm-2-12b","stabilityai\u002fstablelm-2-12b-chat","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-zephyr-3b","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","teknium\u002fOpenHermes-13B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-7B","tiiuae\u002ffalcon-11B","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-7b-instruct","togethercomputer\u002fGPT-JT-6B-v1","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Base","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","upstage\u002fSOLAR-10.7B-Instruct-v1.0","upstage\u002fSOLAR-10.7B-v1.0"],"x":[56.633813495072026,0.0,7.657316148597422,30.09855951478393,30.856709628506447,30.62926459438969,13.570887035633056,13.191811978771797,28.203184230477635,72.17589082638362,1.3646702047005308,0.0,64.74601971190296],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"green"},"mode":"markers","name":"MATH Lvl 5=f(GSM8K)","text":["01-ai\u002fYi-1.5-34B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B-Chat","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-34B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-6B","01-ai\u002fYi-6B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-9B-200K","CausalLM\u002f14B","CohereForAI\u002faya-23-8B","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-v01","Deci\u002fDeciLM-7B","Deci\u002fDeciLM-7B-instruct","EleutherAI\u002fgpt-j-6b","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fpythia-12b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-410m","HuggingFaceH4\u002fzephyr-7b-alpha","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","Intel\u002fneural-chat-7b-v3","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-3","Nexusflow\u002fNexusRaven-V2-13B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-llama-2-7b","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Mistral-7b-64k","Open-Orca\u002fMistral-7B-OpenOrca","OpenAssistant\u002foasst-sft-1-pythia-12b","PygmalionAI\u002fpygmalion-6b","Qwen\u002fQwen1.5-0.5B","Qwen\u002fQwen1.5-0.5B-Chat","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-7B","TencentARC\u002fLLaMA-Pro-8B","TencentARC\u002fLLaMA-Pro-8B-Instruct","TencentARC\u002fMistral_Pro_8B_v0.1","abacusai\u002fSmaug-34B-v0.1","abacusai\u002fSmaug-72B-v0.1","allenai\u002fOLMo-1B-hf","allenai\u002fOLMo-1B-hf","argilla\u002fnotux-8x7b-v1","berkeley-nest\u002fStarling-LM-7B-alpha","berkeley-nest\u002fStarling-LM-7B-alpha","bigcode\u002fstarcoder2-15b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-7b","bigscience\u002fbloom-1b1","bigscience\u002fbloom-1b7","bigscience\u002fbloom-3b","bigscience\u002fbloom-560m","bigscience\u002fbloom-7b1","cognitivecomputations\u002fdolphin-2.9-llama3-8b","cognitivecomputations\u002fdolphin-2.9-llama3-8b","databricks\u002fdolly-v2-12b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-7b","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-moe-16b-base","facebook\u002fopt-1.3b","facebook\u002fopt-30b","google\u002fgemma-1.1-7b-it","google\u002fgemma-2b","google\u002fgemma-2b","google\u002fgemma-2b-it","google\u002fgemma-7b","google\u002fgemma-7b","google\u002fgemma-7b-it","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b-it","gpt2","gpt2","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","ibm\u002fmerlinite-7b","lmsys\u002fvicuna-7b-v1.5","lmsys\u002fvicuna-7b-v1.5","meta-llama\u002fLlama-2-13b-chat-hf","meta-llama\u002fLlama-2-13b-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B-Instruct","microsoft\u002fDialoGPT-medium","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-7b","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fphi-1_5","microsoft\u002fphi-2","microsoft\u002fphi-2","mistral-community\u002fMistral-7B-v0.2","mistral-community\u002fMistral-7B-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mlabonne\u002fAlphaMonarch-7B","mlabonne\u002fBeyonder-4x7B-v3","mlabonne\u002fOrpoLlama-3-8B","mosaicml\u002fmpt-7b","openai-community\u002fgpt2","openai-community\u002fgpt2-large","openchat\u002fopenchat-3.5-1210","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2_super","refuelai\u002fLlama-3-Refueled","refuelai\u002fLlama-3-Refueled","stabilityai\u002fstablelm-2-12b","stabilityai\u002fstablelm-2-12b-chat","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-zephyr-3b","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","teknium\u002fOpenHermes-13B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-7B","tiiuae\u002ffalcon-11B","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-7b-instruct","togethercomputer\u002fGPT-JT-6B-v1","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Base","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","upstage\u002fSOLAR-10.7B-Instruct-v1.0","upstage\u002fSOLAR-10.7B-v1.0"],"x":[0.0,0.0],"y":[13.444108761329304,9.592145015105741],"type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"title":{"text":"MATH (v2) as fn of GSM8K (v1)"},"yaxis":{"title":{"text":"MATH lvl 5"}},"xaxis":{"title":{"text":"GSM8K"}},"showlegend":false}, {"responsive": true} ) }; </script> </div>
src/fragments/model_size_vs_perf.html ADDED
The diff for this file is too large to render. See raw diff
 
src/fragments/new_scores_vs_old.html ADDED
@@ -0,0 +1 @@
 
 
1
+ <div> <div id="6f634a12-ce30-4ac5-b729-53fa56977873" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("6f634a12-ce30-4ac5-b729-53fa56977873")) { Plotly.newPlot( "6f634a12-ce30-4ac5-b729-53fa56977873", [{"hoverinfo":"all","marker":{"color":"#FF323D"},"mode":"markers","name":"MMLU-PRO as function of (MMLU)","text":["01-ai\u002fYi-1.5-34B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B-Chat","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-34B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-6B","01-ai\u002fYi-6B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-9B-200K","CausalLM\u002f14B","CohereForAI\u002faya-23-8B","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-v01","Deci\u002fDeciLM-7B","Deci\u002fDeciLM-7B-instruct","EleutherAI\u002fgpt-j-6b","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fpythia-12b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-410m","HuggingFaceH4\u002fzephyr-7b-alpha","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","Intel\u002fneural-chat-7b-v3","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-3","Nexusflow\u002fNexusRaven-V2-13B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-llama-2-7b","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Mistral-7b-64k","Open-Orca\u002fMistral-7B-OpenOrca","OpenAssistant\u002foasst-sft-1-pythia-12b","PygmalionAI\u002fpygmalion-6b","Qwen\u002fQwen1.5-0.5B","Qwen\u002fQwen1.5-0.5B-Chat","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-7B","TencentARC\u002fLLaMA-Pro-8B","TencentARC\u002fLLaMA-Pro-8B-Instruct","TencentARC\u002fMistral_Pro_8B_v0.1","abacusai\u002fSmaug-34B-v0.1","abacusai\u002fSmaug-72B-v0.1","allenai\u002fOLMo-1B-hf","allenai\u002fOLMo-1B-hf","argilla\u002fnotux-8x7b-v1","berkeley-nest\u002fStarling-LM-7B-alpha","berkeley-nest\u002fStarling-LM-7B-alpha","bigcode\u002fstarcoder2-15b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-7b","bigscience\u002fbloom-1b1","bigscience\u002fbloom-1b7","bigscience\u002fbloom-3b","bigscience\u002fbloom-560m","bigscience\u002fbloom-7b1","cognitivecomputations\u002fdolphin-2.9-llama3-8b","cognitivecomputations\u002fdolphin-2.9-llama3-8b","databricks\u002fdolly-v2-12b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-7b","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-moe-16b-base","facebook\u002fopt-1.3b","facebook\u002fopt-30b","google\u002fgemma-1.1-7b-it","google\u002fgemma-2b","google\u002fgemma-2b","google\u002fgemma-2b-it","google\u002fgemma-7b","google\u002fgemma-7b","google\u002fgemma-7b-it","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b-it","gpt2","gpt2","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","ibm\u002fmerlinite-7b","lmsys\u002fvicuna-7b-v1.5","lmsys\u002fvicuna-7b-v1.5","meta-llama\u002fLlama-2-13b-chat-hf","meta-llama\u002fLlama-2-13b-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B-Instruct","microsoft\u002fDialoGPT-medium","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-7b","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fphi-1_5","microsoft\u002fphi-2","microsoft\u002fphi-2","mistral-community\u002fMistral-7B-v0.2","mistral-community\u002fMistral-7B-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mlabonne\u002fAlphaMonarch-7B","mlabonne\u002fBeyonder-4x7B-v3","mlabonne\u002fOrpoLlama-3-8B","mosaicml\u002fmpt-7b","openai-community\u002fgpt2","openai-community\u002fgpt2-large","openchat\u002fopenchat-3.5-1210","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2_super","refuelai\u002fLlama-3-Refueled","refuelai\u002fLlama-3-Refueled","stabilityai\u002fstablelm-2-12b","stabilityai\u002fstablelm-2-12b-chat","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-zephyr-3b","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","teknium\u002fOpenHermes-13B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-7B","tiiuae\u002ffalcon-11B","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-7b-instruct","togethercomputer\u002fGPT-JT-6B-v1","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Base","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","upstage\u002fSOLAR-10.7B-Instruct-v1.0","upstage\u002fSOLAR-10.7B-v1.0"],"x":[77.9957192730956,78.15303198667405,77.08283992203879,64.72689535017567,65.00272042688377,64.24095801586486,70.73451954519469,70.97203740649417,71.01349610420871,70.95946328062593,76.35156727391681,75.56180045111563,74.86694971720243,74.89765262226099,63.84606128348609,64.10709139827398,64.64867451074461,64.64930135205712,70.06330822380845,70.34013960436471,65.86320847049085,56.33899126009816,75.72824616707308,74.02494713760785,68.19530224441294,59.762938924439105,60.24359775384097,26.783999358640752,24.821655499137048,26.45397884474629,25.002595295235746,26.75606660161476,24.950593393502686,27.245507410753593,61.3896585162216,61.061389920377685,61.06911135758283,60.70490193884751,58.975890703009014,60.682678692224144,27.03799242337422,62.26105246211977,60.791623329684086,62.374203705324284,62.44460409845261,62.11841694257893,63.550105055987174,63.07073351412039,44.87880425591219,64.79850156958106,62.20609448217756,62.1246057414326,66.51191133673278,66.55303373586858,63.356659125507434,63.245294478077106,72.27737838264045,72.17054547051251,72.20739527153786,66.29541259257003,48.335234653692204,63.02324877855956,62.96478981633615,62.24441734951871,26.193572189883703,25.730836314001447,39.35334081217581,33.81983654590648,46.70838530175783,45.86651800528403,80.19575908781562,78.03946337687869,69.36026470831474,68.51540963742676,68.57472555756478,74.29961283965316,74.31221659340622,74.99313230796709,56.523519639933376,55.55462512266324,61.9700216814056,61.64766854906246,61.69764020685532,62.54071682523817,60.970670017639726,45.17037929235293,57.25919892204937,70.4515868286805,47.49331993287192,52.577029472650906,61.74163205184785,76.66476969478123,77.15452603998116,26.234231797093017,26.306692338086823,71.38894203721195,64.70438661462165,64.66799008434704,51.34583865906561,38.64860206508296,41.21331864479665,26.70214825620786,27.47846514752041,26.592509199327857,24.21541212062042,26.246222375725694,61.03678038351008,61.04002830421494,25.916845651522607,24.696321332710696,25.183937022975865,72.41916167903139,72.18744401223967,51.74656618684998,51.77213745416527,46.306113561052754,24.963045825616692,26.658730035291097,60.91642429212937,41.679249280698635,41.77314644002599,37.648186828291585,64.5598699571695,66.02745725247713,53.5170310018511,34.611140710007234,34.38230443417011,40.86948703219191,25.833717804860335,25.404197294686202,61.917687321536896,62.84956375246854,64.90605869704184,51.037449016607304,50.8231434865938,54.63627087850933,55.77103633323489,63.90701952816292,69.83208921288625,48.318825530104384,46.866075004498,43.79609636092417,79.23293386179718,80.05922317995427,66.70480406193239,66.49495492503577,67.0721995784583,25.838967331895883,60.37069885710225,60.301159128932504,56.371153419443566,77.83091143434687,68.70399293043886,69.08301379498349,43.886467784197876,58.1123279817493,57.92026667108576,63.689429588238426,63.617802578997775,55.37547435463056,60.778011275770005,64.16448378492244,63.46289361741425,71.16228271617086,71.39615714693673,71.81543655466032,70.17346542519046,71.87839332236227,64.40157643349518,64.87016580791871,65.76439370548329,30.795325425385716,25.833717804860335,26.067403063531568,64.62163338646481,64.97554013321405,64.94207335284045,62.892016034379076,56.823746005051746,56.68268469601176,55.89931756667269,64.73176939664393,64.68760308408112,62.039927374602314,61.05866061151978,38.94657259915192,41.47262454451639,42.03478315758355,45.225737544229936,46.1679465865397,62.349785875539155,56.34727779629169,63.8216682847302,63.636962953801635,48.617757574363246,58.3670122238434,56.8938511726681,27.785470153285935,25.660046534596926,25.836963794035032,47.19018110516562,29.919101184126255,43.32570701968771,46.105045377255685,45.53223866033279,27.68214018695477,26.942822650634863,37.61836019303777,27.02787422464126,26.231263349013634,25.032214024865144,66.21064893071143,65.47877433224612],"y":[40.732121749408975,41.21232269503546,39.11606087470449,23.343306737588648,23.343306737588648,24.414524231678485,32.402482269503544,30.721778959810877,33.05814125295508,33.261303191489354,37.90632387706855,39.273049645390074,34.369459219858165,34.369459219858165,22.12433510638298,22.12433510638298,20.489804964539008,20.489804964539008,28.59781323877068,29.1334219858156,24.682328605200944,14.2010195035461,33.242833924349874,33.242833924349874,26.326093380614658,18.799867021276594,17.86716903073286,2.6761968085106376,1.8173758865248217,1.8081412529550822,1.725029550827422,1.2078900709219857,1.3279403073286051,1.4202866430260035,19.94496158392435,19.78797281323877,19.78797281323877,19.78797281323877,20.526743498817968,20.526743498817968,1.124778368794326,18.873744089834513,18.642878250591018,18.642878250591018,18.642878250591018,18.642878250591018,18.522828014184395,18.05186170212766,9.685283687943262,22.798463356973993,21.625664893617017,21.625664893617017,26.316858747044915,26.316858747044915,22.392139479905435,22.392139479905435,29.63209219858156,29.63209219858156,22.95545212765957,27.314199172576835,10.442523640661937,21.034648345153663,21.265514184397162,18.36583924349882,1.2540632387706852,2.0390070921985806,3.4149674940898342,2.362219267139479,9.79609929078014,8.928043735224584,48.45227541371159,42.495936761229316,29.373522458628837,29.08724881796691,29.08724881796691,38.88519503546098,38.88519503546098,38.41422872340425,16.22340425531915,15.512337470449172,21.293218085106382,21.681072695035464,21.681072695035464,19.751034278959807,21.3670951536643,7.7552452718676115,17.239213947990542,35.366799645390074,9.011155437352246,10.507166075650117,19.61251477541371,39.36539598108747,40.45508274231678,1.9281914893617011,1.9281914893617011,29.659796099290777,24.128250591016545,24.128250591016545,15.032136524822693,7.0718823877068555,7.1365248226950335,1.1986554373522447,0.9585549645390061,1.4756944444444438,1.8266105200945615,1.1617169030732852,19.67715721040189,19.67715721040189,1.4295212765957446,1.6142139479905429,1.6603871158392434,32.70722517730496,32.70722517730496,12.594193262411347,12.594193262411347,5.612810283687943,1.1894208037825047,1.8173758865248217,17.5993646572104,4.061391843971631,4.061391843971631,3.9228723404255303,21.644134160756497,21.644134160756497,7.7183067375886525,1.9928339243498814,1.9928339243498814,4.4123079196217505,1.7712027186761226,1.7712027186761226,21.56102245862884,21.56102245862884,22.983156028368796,12.741947399527188,12.741947399527188,10.257830969267138,15.309175531914892,15.918661347517732,30.1954048463357,7.524379432624113,9.56523345153664,9.56523345153664,41.21232269503546,46.74386820330969,24.553043735224584,24.553043735224584,29.604388297872337,1.3187056737588652,19.437056737588648,19.437056737588648,14.653516548463358,40.84293735224587,30.38009751773049,31.848404255319146,7.6813682033096935,18.088800236406616,18.088800236406616,21.699541962174944,21.699541962174944,15.336879432624112,19.076906028368796,22.364435579196215,21.699541962174944,29.364287825059105,29.364287825059105,31.49748817966903,31.49748817966903,31.49748817966903,16.36192375886525,16.805186170212764,18.947621158392433,2.288342198581559,1.7712027186761226,1.5772754137115832,23.805038416075647,23.92508865248227,23.92508865248227,23.92508865248227,15.79861111111111,15.79861111111111,15.83554964539007,23.278664302600472,23.278664302600472,23.020094562647756,19.270833333333332,5.1510786052009445,6.905658983451536,7.930703309692672,7.432033096926712,8.530954491725769,20.40669326241135,15.438460401891252,22.826167257683213,22.826167257683213,10.368646572104018,15.438460401891252,16.722074468085104,1.392582742316784,1.725029550827422,1.725029550827422,6.951832151300234,1.6142139479905429,8.530954491725769,8.678708628841607,8.678708628841607,2.186761229314421,1.3464095744680846,3.027112884160755,1.2355939716312052,1.4110520094562635,1.2171247044917257,23.758865248226947,26.667774822695034],"type":"scatter"},{"hoverinfo":"all","marker":{"color":"#FF9D00"},"mode":"markers","name":"GPQA as function of (MMLU)","text":["01-ai\u002fYi-1.5-34B","01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-34B-Chat","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B","01-ai\u002fYi-1.5-6B-Chat","01-ai\u002fYi-1.5-9B","01-ai\u002fYi-1.5-9B-32K","01-ai\u002fYi-1.5-9B-Chat","01-ai\u002fYi-1.5-9B-Chat-16K","01-ai\u002fYi-34B","01-ai\u002fYi-34B-200K","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-34B-Chat","01-ai\u002fYi-6B","01-ai\u002fYi-6B","01-ai\u002fYi-6B-200K","01-ai\u002fYi-6B-200K","01-ai\u002fYi-9B","01-ai\u002fYi-9B-200K","CausalLM\u002f14B","CohereForAI\u002faya-23-8B","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-plus","CohereForAI\u002fc4ai-command-r-v01","Deci\u002fDeciLM-7B","Deci\u002fDeciLM-7B-instruct","EleutherAI\u002fgpt-j-6b","EleutherAI\u002fgpt-neo-1.3B","EleutherAI\u002fgpt-neo-2.7B","EleutherAI\u002fgpt-neox-20b","EleutherAI\u002fpythia-12b","EleutherAI\u002fpythia-160m","EleutherAI\u002fpythia-410m","HuggingFaceH4\u002fzephyr-7b-alpha","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-beta","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","HuggingFaceH4\u002fzephyr-7b-gemma-v0.1","IDEA-CCNL\u002fZiya-LLaMA-13B-v1","Intel\u002fneural-chat-7b-v3","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-1","Intel\u002fneural-chat-7b-v3-2","Intel\u002fneural-chat-7b-v3-3","Nexusflow\u002fNexusRaven-V2-13B","NousResearch\u002fHermes-2-Pro-Llama-3-8B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Pro-Mistral-7B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fHermes-2-Theta-Llama-3-8B","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mistral-7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-DPO","NousResearch\u002fNous-Hermes-2-Mixtral-8x7B-SFT","NousResearch\u002fNous-Hermes-2-SOLAR-10.7B","NousResearch\u002fNous-Hermes-llama-2-7b","NousResearch\u002fYarn-Mistral-7b-128k","NousResearch\u002fYarn-Mistral-7b-64k","Open-Orca\u002fMistral-7B-OpenOrca","OpenAssistant\u002foasst-sft-1-pythia-12b","PygmalionAI\u002fpygmalion-6b","Qwen\u002fQwen1.5-0.5B","Qwen\u002fQwen1.5-0.5B-Chat","Qwen\u002fQwen1.5-1.8B","Qwen\u002fQwen1.5-1.8B-Chat","Qwen\u002fQwen1.5-110B","Qwen\u002fQwen1.5-110B-Chat","Qwen\u002fQwen1.5-14B","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-14B-Chat","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B","Qwen\u002fQwen1.5-32B-Chat","Qwen\u002fQwen1.5-4B","Qwen\u002fQwen1.5-4B-Chat","Qwen\u002fQwen1.5-7B","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-7B-Chat","Qwen\u002fQwen1.5-MoE-A2.7B","Qwen\u002fQwen1.5-MoE-A2.7B-Chat","Qwen\u002fQwen2-0.5B","Qwen\u002fQwen2-1.5B","Qwen\u002fQwen2-7B","TencentARC\u002fLLaMA-Pro-8B","TencentARC\u002fLLaMA-Pro-8B-Instruct","TencentARC\u002fMistral_Pro_8B_v0.1","abacusai\u002fSmaug-34B-v0.1","abacusai\u002fSmaug-72B-v0.1","allenai\u002fOLMo-1B-hf","allenai\u002fOLMo-1B-hf","argilla\u002fnotux-8x7b-v1","berkeley-nest\u002fStarling-LM-7B-alpha","berkeley-nest\u002fStarling-LM-7B-alpha","bigcode\u002fstarcoder2-15b","bigcode\u002fstarcoder2-3b","bigcode\u002fstarcoder2-7b","bigscience\u002fbloom-1b1","bigscience\u002fbloom-1b7","bigscience\u002fbloom-3b","bigscience\u002fbloom-560m","bigscience\u002fbloom-7b1","cognitivecomputations\u002fdolphin-2.9-llama3-8b","cognitivecomputations\u002fdolphin-2.9-llama3-8b","databricks\u002fdolly-v2-12b","databricks\u002fdolly-v2-3b","databricks\u002fdolly-v2-7b","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-67b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-llm-7b-chat","deepseek-ai\u002fdeepseek-moe-16b-base","facebook\u002fopt-1.3b","facebook\u002fopt-30b","google\u002fgemma-1.1-7b-it","google\u002fgemma-2b","google\u002fgemma-2b","google\u002fgemma-2b-it","google\u002fgemma-7b","google\u002fgemma-7b","google\u002fgemma-7b-it","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b","google\u002frecurrentgemma-2b-it","gpt2","gpt2","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","gradientai\u002fLlama-3-8B-Instruct-Gradient-1048k","ibm\u002fmerlinite-7b","lmsys\u002fvicuna-7b-v1.5","lmsys\u002fvicuna-7b-v1.5","meta-llama\u002fLlama-2-13b-chat-hf","meta-llama\u002fLlama-2-13b-hf","meta-llama\u002fLlama-2-70b-chat-hf","meta-llama\u002fLlama-2-70b-hf","meta-llama\u002fLlama-2-7b-chat-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fLlama-2-7b-hf","meta-llama\u002fMeta-Llama-3-70B","meta-llama\u002fMeta-Llama-3-70B-Instruct","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B","meta-llama\u002fMeta-Llama-3-8B-Instruct","microsoft\u002fDialoGPT-medium","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-13b","microsoft\u002fOrca-2-7b","microsoft\u002fPhi-3-medium-4k-instruct","microsoft\u002fPhi-3-mini-128k-instruct","microsoft\u002fPhi-3-mini-4k-instruct","microsoft\u002fphi-1_5","microsoft\u002fphi-2","microsoft\u002fphi-2","mistral-community\u002fMistral-7B-v0.2","mistral-community\u002fMistral-7B-v0.2","mistralai\u002fMistral-7B-Instruct-v0.1","mistralai\u002fMistral-7B-Instruct-v0.2","mistralai\u002fMistral-7B-v0.1","mistralai\u002fMistral-7B-v0.3","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-Instruct-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mistralai\u002fMixtral-8x7B-v0.1","mlabonne\u002fAlphaMonarch-7B","mlabonne\u002fBeyonder-4x7B-v3","mlabonne\u002fOrpoLlama-3-8B","mosaicml\u002fmpt-7b","openai-community\u002fgpt2","openai-community\u002fgpt2-large","openchat\u002fopenchat-3.5-1210","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_3.5","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2","openchat\u002fopenchat_v3.2_super","refuelai\u002fLlama-3-Refueled","refuelai\u002fLlama-3-Refueled","stabilityai\u002fstablelm-2-12b","stabilityai\u002fstablelm-2-12b-chat","stabilityai\u002fstablelm-2-1_6b","stabilityai\u002fstablelm-2-1_6b-chat","stabilityai\u002fstablelm-2-zephyr-1_6b","stabilityai\u002fstablelm-3b-4e1t","stabilityai\u002fstablelm-zephyr-3b","teknium\u002fCollectiveCognition-v1.1-Mistral-7B","teknium\u002fOpenHermes-13B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-2.5-Mistral-7B","teknium\u002fOpenHermes-7B","tiiuae\u002ffalcon-11B","tiiuae\u002ffalcon-40b","tiiuae\u002ffalcon-7b","tiiuae\u002ffalcon-7b-instruct","tiiuae\u002ffalcon-7b-instruct","togethercomputer\u002fGPT-JT-6B-v1","togethercomputer\u002fGPT-NeoXT-Chat-Base-20B","togethercomputer\u002fLLaMA-2-7B-32K","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fLlama-2-7B-32K-Instruct","togethercomputer\u002fRedPajama-INCITE-7B-Base","togethercomputer\u002fRedPajama-INCITE-7B-Chat","togethercomputer\u002fRedPajama-INCITE-7B-Instruct","togethercomputer\u002fRedPajama-INCITE-Base-3B-v1","togethercomputer\u002fRedPajama-INCITE-Chat-3B-v1","togethercomputer\u002fRedPajama-INCITE-Instruct-3B-v1","upstage\u002fSOLAR-10.7B-Instruct-v1.0","upstage\u002fSOLAR-10.7B-v1.0"],"x":[77.9957192730956,78.15303198667405,77.08283992203879,64.72689535017567,65.00272042688377,64.24095801586486,70.73451954519469,70.97203740649417,71.01349610420871,70.95946328062593,76.35156727391681,75.56180045111563,74.86694971720243,74.89765262226099,63.84606128348609,64.10709139827398,64.64867451074461,64.64930135205712,70.06330822380845,70.34013960436471,65.86320847049085,56.33899126009816,75.72824616707308,74.02494713760785,68.19530224441294,59.762938924439105,60.24359775384097,26.783999358640752,24.821655499137048,26.45397884474629,25.002595295235746,26.75606660161476,24.950593393502686,27.245507410753593,61.3896585162216,61.061389920377685,61.06911135758283,60.70490193884751,58.975890703009014,60.682678692224144,27.03799242337422,62.26105246211977,60.791623329684086,62.374203705324284,62.44460409845261,62.11841694257893,63.550105055987174,63.07073351412039,44.87880425591219,64.79850156958106,62.20609448217756,62.1246057414326,66.51191133673278,66.55303373586858,63.356659125507434,63.245294478077106,72.27737838264045,72.17054547051251,72.20739527153786,66.29541259257003,48.335234653692204,63.02324877855956,62.96478981633615,62.24441734951871,26.193572189883703,25.730836314001447,39.35334081217581,33.81983654590648,46.70838530175783,45.86651800528403,80.19575908781562,78.03946337687869,69.36026470831474,68.51540963742676,68.57472555756478,74.29961283965316,74.31221659340622,74.99313230796709,56.523519639933376,55.55462512266324,61.9700216814056,61.64766854906246,61.69764020685532,62.54071682523817,60.970670017639726,45.17037929235293,57.25919892204937,70.4515868286805,47.49331993287192,52.577029472650906,61.74163205184785,76.66476969478123,77.15452603998116,26.234231797093017,26.306692338086823,71.38894203721195,64.70438661462165,64.66799008434704,51.34583865906561,38.64860206508296,41.21331864479665,26.70214825620786,27.47846514752041,26.592509199327857,24.21541212062042,26.246222375725694,61.03678038351008,61.04002830421494,25.916845651522607,24.696321332710696,25.183937022975865,72.41916167903139,72.18744401223967,51.74656618684998,51.77213745416527,46.306113561052754,24.963045825616692,26.658730035291097,60.91642429212937,41.679249280698635,41.77314644002599,37.648186828291585,64.5598699571695,66.02745725247713,53.5170310018511,34.611140710007234,34.38230443417011,40.86948703219191,25.833717804860335,25.404197294686202,61.917687321536896,62.84956375246854,64.90605869704184,51.037449016607304,50.8231434865938,54.63627087850933,55.77103633323489,63.90701952816292,69.83208921288625,48.318825530104384,46.866075004498,43.79609636092417,79.23293386179718,80.05922317995427,66.70480406193239,66.49495492503577,67.0721995784583,25.838967331895883,60.37069885710225,60.301159128932504,56.371153419443566,77.83091143434687,68.70399293043886,69.08301379498349,43.886467784197876,58.1123279817493,57.92026667108576,63.689429588238426,63.617802578997775,55.37547435463056,60.778011275770005,64.16448378492244,63.46289361741425,71.16228271617086,71.39615714693673,71.81543655466032,70.17346542519046,71.87839332236227,64.40157643349518,64.87016580791871,65.76439370548329,30.795325425385716,25.833717804860335,26.067403063531568,64.62163338646481,64.97554013321405,64.94207335284045,62.892016034379076,56.823746005051746,56.68268469601176,55.89931756667269,64.73176939664393,64.68760308408112,62.039927374602314,61.05866061151978,38.94657259915192,41.47262454451639,42.03478315758355,45.225737544229936,46.1679465865397,62.349785875539155,56.34727779629169,63.8216682847302,63.636962953801635,48.617757574363246,58.3670122238434,56.8938511726681,27.785470153285935,25.660046534596926,25.836963794035032,47.19018110516562,29.919101184126255,43.32570701968771,46.105045377255685,45.53223866033279,27.68214018695477,26.942822650634863,37.61836019303777,27.02787422464126,26.231263349013634,25.032214024865144,66.21064893071143,65.47877433224612],"y":[15.436241610738257,15.100671140939594,15.324384787472036,8.277404921700223,8.277404921700223,9.060402684563762,17.225950782997764,14.541387024608499,11.297539149888143,7.829977628635347,15.548098434004473,14.205816554809845,11.74496644295302,11.74496644295302,2.572706935123044,2.572706935123044,4.250559284116329,4.250559284116329,9.060402684563762,8.7248322147651,7.046979865771815,4.5861297539149914,7.38255033557047,7.38255033557047,7.606263982102905,6.040268456375841,5.257270693512303,0.0,0.7829977628635317,2.1252796420581683,0.0,0.0,1.1185682326621946,1.230425055928408,6.375838926174497,5.369127516778524,5.369127516778524,5.369127516778524,5.92841163310962,5.92841163310962,0.0,5.592841163310966,5.369127516778524,5.369127516778524,5.369127516778524,5.369127516778524,5.369127516778524,5.257270693512303,1.342281879194629,5.7046979865771785,3.1319910514541416,3.1319910514541416,7.158836689038028,7.158836689038028,5.7046979865771785,5.7046979865771785,9.61968680089485,9.61968680089485,6.935123042505594,5.8165548098433995,1.7897091722595053,6.487695749440718,5.369127516778524,2.9082774049216997,1.0067114093959737,0.0,0.5592841163310973,2.572706935123044,7.38255033557047,6.375838926174497,13.646532438478745,12.192393736017896,5.92841163310962,2.684563758389265,2.684563758389265,10.626398210290827,10.626398210290827,7.494407158836691,3.5794183445190177,2.2371364653243813,6.487695749440718,7.046979865771815,7.046979865771815,1.230425055928408,3.243847874720355,0.7829977628635317,1.9015659955257262,7.270693512304249,1.342281879194629,3.243847874720355,4.026845637583895,10.626398210290827,9.61968680089485,1.5659955257270708,1.5659955257270708,7.494407158836691,6.263982102908276,6.263982102908276,2.9082774049216997,0.0,0.22371364653244186,1.230425055928408,1.1185682326621946,0.0,1.5659955257270708,1.9015659955257262,4.921700223713646,4.921700223713646,0.0,1.4541387024608499,2.460850111856823,8.83668903803132,8.83668903803132,2.1252796420581683,2.1252796420581683,0.5592841163310973,0.0,2.572706935123044,5.8165548098433995,0.6711409395973182,0.6711409395973182,3.8031319910514525,4.921700223713646,4.921700223713646,4.5861297539149914,0.0,0.0,1.0067114093959737,1.1185682326621946,1.1185682326621946,3.6912751677852316,3.6912751677852316,6.263982102908276,1.1185682326621946,1.1185682326621946,0.0,4.138702460850116,1.9015659955257262,7.046979865771815,0.5592841163310973,2.2371364653243813,2.2371364653243813,19.686800894854585,4.921700223713646,7.38255033557047,7.38255033557047,1.230425055928408,0.5592841163310973,4.026845637583895,4.026845637583895,0.7829977628635317,11.521252796420578,9.060402684563762,9.284116331096197,2.348993288590602,2.9082774049216997,2.9082774049216997,5.592841163310966,5.592841163310966,0.0,3.467561521252797,5.592841163310966,5.592841163310966,7.606263982102905,7.606263982102905,9.284116331096197,9.284116331096197,9.284116331096197,2.684563758389265,4.697986577181204,3.9149888143176734,1.342281879194629,1.1185682326621946,1.230425055928408,6.823266219239373,6.487695749440718,6.487695749440718,6.487695749440718,2.684563758389265,2.684563758389265,1.9015659955257262,6.599552572706939,6.599552572706939,3.8031319910514525,2.2371364653243813,0.0,0.0,0.0,0.0,0.0,4.921700223713646,3.0201342281879207,4.4742729306487705,4.4742729306487705,2.572706935123044,2.796420581655479,3.1319910514541416,0.0,0.0,0.0,1.4541387024608499,0.0,0.0,0.22371364653244186,0.22371364653244186,0.6711409395973182,0.33557046979865535,0.11185682326622093,0.0,0.0,0.0,7.829977628635347,4.138702460850116],"type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"x":0,"y":1,"traceorder":"normal"},"title":{"text":"New scores as functions of old evaluations"},"yaxis":{"title":{"text":"v2 scores"}},"xaxis":{"title":{"text":"v1 scores"}}}, {"responsive": true} ) }; </script> </div>
src/fragments/normalized_vs_raw.html ADDED
@@ -0,0 +1 @@
 
 
1
+ <div> <div id="fb4901de-cfe8-4acf-8036-ec74acf93c18" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("fb4901de-cfe8-4acf-8036-ec74acf93c18")) { Plotly.newPlot( "fb4901de-cfe8-4acf-8036-ec74acf93c18", [{"marker":{"color":"#FF323D"},"name":"Normalized Mean Scores","text":[3.7375707623265773,4.260876175582632,8.83903974514563,16.69656715497257,19.42625790536491,32.78571138387461],"x":["MATH Lvl 5","GPQA","MUSR","MMLU-PRO","BBH","IFEval"],"y":[3.7375707623265773,4.260876175582632,8.83903974514563,16.69656715497257,19.42625790536491,32.78571138387461],"type":"bar","textposition":"outside","texttemplate":"%{text:.3s}"},{"marker":{"color":"#FF9D00"},"name":"Raw Mean Scores","text":["3.737570762326578","28.112171759953085","40.07343244336569","25.02691043947532","42.46628877269588","32.78571138387461"],"x":["MATH Lvl 5","GPQA","MUSR","MMLU-PRO","BBH","IFEval"],"y":[3.737570762326578,28.112171759953085,40.07343244336569,25.02691043947532,42.46628877269588,32.78571138387461],"type":"bar","textposition":"outside","texttemplate":"%{text:.3s}"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"yaxis":{"range":[0,60],"title":{"text":"Score"}},"barmode":"group","uniformtext":{"minsize":8,"mode":"hide"},"legend":{"x":0,"y":1,"traceorder":"normal"},"title":{"text":"Normalized Vs Raw"},"bargap":0.15,"bargroupgap":0.05}, {"responsive": true} ) }; </script> </div>
src/fragments/plot.html ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <div> <script type="text/javascript">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>
2
+ <div id="3dcf3570-b639-4c3c-94e9-d775eb388370" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("3dcf3570-b639-4c3c-94e9-d775eb388370")) { Plotly.newPlot( "3dcf3570-b639-4c3c-94e9-d775eb388370", [{"customdata":[["ARC",50.43,"bigscience\u002fbloom"],["ARC",70.48,"migtissera\u002fSynthia-70B-v1.2"],["ARC",72.1,"uni-tianyan\u002fUni-TianYan"],["ARC",72.27,"fangloveskari\u002fORCA_LLaMA_70B_QLoRA"],["ARC",73.12,"Riiid\u002fsheep-duck-llama-2-70b-v1.1"],["ARC",73.38,"fblgit\u002fUNAversal-2x7B-v1"],["ARC",73.55,"TomGrc\u002fFusionNet_7Bx2_MoE_14B"],["ARC",73.72,"Kquant03\u002fProkaryote-8x7B-bf16"],["ARC",74.91,"yunconglong\u002fTruthful_DPO_TomGrc_FusionNet_7Bx2_MoE_13B"],["ARC",76.02,"abacusai\u002fSmaug-72B-v0.1"],["ARC",77.47,"saltlux\u002fluxia-21.4b-alignment-v1.0"],["ARC",78.24,"4season\u002falignment_model_test"],["ARC",79.78,"davidkim205\u002fRhea-72b-v0.5"],["ARC",79.86,"freewheelin\u002ffree-evo-qwen72b-v0.8-re"]],"hovertemplate":"Model Name: %{customdata[2]}\u003cbr\u003eMetric Name: %{customdata[0]}\u003cbr\u003eDate: %{x}\u003cbr\u003eMetric Value: %{y}","legendgroup":"ARC","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines+markers","name":"ARC","orientation":"v","showlegend":true,"x":["2023-08-25T13:05:50+00:00","2023-09-09T10:52:17+00:00","2023-10-16T12:46:18+00:00","2023-10-16T12:48:18+00:00","2023-12-04T03:08:34+00:00","2024-01-09T08:46:56+00:00","2024-01-12T16:05:44+00:00","2024-01-18T04:27:19+00:00","2024-01-21T09:10:58+00:00","2024-02-03T18:49:25+00:00","2024-03-11T03:09:26+00:00","2024-03-16T11:32:40+00:00","2024-03-22T15:04:33+00:00","2024-05-05T07:26:59+00:00"],"xaxis":"x","y":[50.43,70.48,72.1,72.27,73.12,73.38,73.55,73.72,74.91,76.02,77.47,78.24,79.78,79.86],"yaxis":"y","type":"scatter"},{"customdata":[["MMLU",30.85,"bigscience\u002fbloom"],["MMLU",70.67,"jondurbin\u002fairoboros-l2-70b-gpt4-m2.0"],["MMLU",70.7,"ICBU-NPU\u002fFashionGPT-70B-V1"],["MMLU",70.99,"ICBU-NPU\u002fFashionGPT-70B-V1.1"],["MMLU",78.13,"bhenrym14\u002fplatypus-yi-34b"],["MMLU",78.46,"kyujinpy\u002fPlatYi-34B-LoRA"],["MMLU",78.78,"kyujinpy\u002fPlatYi-34B-Llama-Q"],["MMLU",85.6,"CausalLM\u002f34b-beta"]],"hovertemplate":"Model Name: %{customdata[2]}\u003cbr\u003eMetric Name: %{customdata[0]}\u003cbr\u003eDate: %{x}\u003cbr\u003eMetric Value: %{y}","legendgroup":"MMLU","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines+markers","name":"MMLU","orientation":"v","showlegend":true,"x":["2023-08-25T13:05:50+00:00","2023-09-09T10:52:17+00:00","2023-10-16T13:19:55+00:00","2023-11-06T10:31:15+00:00","2023-11-15T16:49:09+00:00","2023-12-03T12:09:22+00:00","2023-12-06T11:25:55+00:00","2024-02-09T16:11:28+00:00"],"xaxis":"x","y":[30.85,70.67,70.7,70.99,78.13,78.46,78.78,85.6],"yaxis":"y","type":"scatter"},{"customdata":[["Winogrande",72.06,"bigscience\u002fbloom"],["Winogrande",84.29,"augtoma\u002fqCammel-70-x"],["Winogrande",86.9,"tiiuae\u002ffalcon-180B"],["Winogrande",88.16,"TomGrc\u002fFusionNet_7Bx2_MoE_14B"],["Winogrande",88.24,"yunconglong\u002fTruthful_DPO_TomGrc_FusionNet_7Bx2_MoE_13B"],["Winogrande",88.4,"RubielLabarta\u002fLogoS-7Bx2-MoE-13B-v0.2"]],"hovertemplate":"Model Name: %{customdata[2]}\u003cbr\u003eMetric Name: %{customdata[0]}\u003cbr\u003eDate: %{x}\u003cbr\u003eMetric Value: %{y}","legendgroup":"Winogrande","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines+markers","name":"Winogrande","orientation":"v","showlegend":true,"x":["2023-08-25T13:05:50+00:00","2023-09-09T10:52:17+00:00","2023-09-15T11:25:37.918274+00:00","2024-01-12T16:05:44+00:00","2024-01-21T09:10:58+00:00","2024-02-11T16:05:38+00:00"],"xaxis":"x","y":[72.06,84.29,86.9,88.16,88.24,88.4],"yaxis":"y","type":"scatter"},{"customdata":[["HellaSwag",76.41,"bigscience\u002fbloom"],["HellaSwag",88.32,"TheBloke\u002fllama-2-70b-Guanaco-QLoRA-fp16"],["HellaSwag",88.89,"tiiuae\u002ffalcon-180B"],["HellaSwag",90.11,"Sao10K\u002fWinterGoddess-1.4x-70B-L2"],["HellaSwag",91.88,"saltlux\u002fluxia-21.4b-alignment-v1.0"],["HellaSwag",92.75,"swap-uniba\u002fLLaMAntino-3-ANITA-8B-Inst-DPO-ITA"]],"hovertemplate":"Model Name: %{customdata[2]}\u003cbr\u003eMetric Name: %{customdata[0]}\u003cbr\u003eDate: %{x}\u003cbr\u003eMetric Value: %{y}","legendgroup":"HellaSwag","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines+markers","name":"HellaSwag","orientation":"v","showlegend":true,"x":["2023-08-25T13:05:50+00:00","2023-09-09T10:52:17+00:00","2023-09-15T11:25:37.918274+00:00","2023-12-14T09:05:41+00:00","2024-03-11T03:09:26+00:00","2024-05-14T11:29:36+00:00"],"xaxis":"x","y":[76.41,88.32,88.89,90.11,91.88,92.75],"yaxis":"y","type":"scatter"},{"customdata":[["GSM8K",6.9,"bigscience\u002fbloom"],["GSM8K",35.33,"OpenLemur\u002flemur-70b-chat-v1"],["GSM8K",45.94,"tiiuae\u002ffalcon-180B"],["GSM8K",56.41,"abhishek\u002fzephyr-beta-math"],["GSM8K",59.82,"bhenrym14\u002fplatypus-yi-34b"],["GSM8K",60.8,"chargoddard\u002fYi-34B-Llama"],["GSM8K",62.7,"CausalLM\u002f14B-DPO-alpha"],["GSM8K",63.68,"deepseek-ai\u002fdeepseek-llm-67b-chat"],["GSM8K",68.84,"meta-math\u002fMetaMath-Mistral-7B"],["GSM8K",71.49,"Q-bert\u002fMetaMath-Cybertron-Starling"],["GSM8K",72.18,"SUSTech\u002fSUS-Chat-34B"],["GSM8K",73.16,"Toten5\u002fMarcoroni-neural-chat-7B-v2"],["GSM8K",73.31,"samir-fama\u002fFernandoGPT-v1"],["GSM8K",76.27,"moreh\u002fMoMo-72B-lora-1.8.4-DPO"],["GSM8K",76.8,"moreh\u002fMoMo-72B-lora-1.8.6-DPO"],["GSM8K",78.62,"moreh\u002fMoMo-72B-lora-1.8.7-DPO"],["GSM8K",78.7,"abacusai\u002fSmaug-72B-v0.1"],["GSM8K",82.03,"mistralai\u002fMixtral-8x22B-Instruct-v0.1"],["GSM8K",85.44,"meta-llama\u002fMeta-Llama-3-70B-Instruct"],["GSM8K",86.05,"MaziyarPanahi\u002fLlama-3-70B-Instruct-DPO-v0.1"],["GSM8K",86.28,"tenyx\u002fLlama3-TenyxChat-70B"],["GSM8K",88.25,"MaziyarPanahi\u002fLlama-3-70B-Instruct-DPO-v0.2"]],"hovertemplate":"Model Name: %{customdata[2]}\u003cbr\u003eMetric Name: %{customdata[0]}\u003cbr\u003eDate: %{x}\u003cbr\u003eMetric Value: %{y}","legendgroup":"GSM8K","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines+markers","name":"GSM8K","orientation":"v","showlegend":true,"x":["2023-08-25T13:05:50+00:00","2023-09-09T10:52:17+00:00","2023-09-15T11:25:37.918274+00:00","2023-11-14T13:30:22+00:00","2023-11-15T16:49:09+00:00","2023-11-17T13:40:31+00:00","2023-11-19T20:55:46+00:00","2023-12-01T07:45:30+00:00","2023-12-03T15:31:15+00:00","2023-12-05T20:10:40+00:00","2023-12-09T04:51:31+00:00","2023-12-12T16:18:51+00:00","2023-12-31T09:50:37+00:00","2024-01-12T06:33:27+00:00","2024-01-16T11:52:34+00:00","2024-01-22T00:16:35+00:00","2024-02-03T18:49:25+00:00","2024-04-17T15:30:22+00:00","2024-04-18T17:05:16+00:00","2024-04-26T19:35:47+00:00","2024-04-27T17:40:55+00:00","2024-05-01T17:04:08+00:00"],"xaxis":"x","y":[6.9,35.33,45.94,56.41,59.82,60.8,62.7,63.68,68.84,71.49,72.18,73.16,73.31,76.27,76.8,78.62,78.7,82.03,85.44,86.05,86.28,88.25],"yaxis":"y","type":"scatter"},{"customdata":[["TruthfulQA",39.76,"bigscience\u002fbloom"],["TruthfulQA",61.56,"quantumaikr\u002fllama-2-70b-fb16-orca-chat-10k"],["TruthfulQA",65.81,"uni-tianyan\u002fUni-TianYan"],["TruthfulQA",68.26,"mistralai\u002fMistral-7B-Instruct-v0.2"],["TruthfulQA",70.49,"rishiraj\u002fmeow"],["TruthfulQA",76.73,"Sao10K\u002fSOLAR-10.7B-NahIdWin"],["TruthfulQA",78.02,"yunconglong\u002fTruthful_DPO_TomGrc_FusionNet_7Bx2_MoE_13B"],["TruthfulQA",79.36,"daxiongshu\u002fPluto_24B_DPO_63"],["TruthfulQA",79.79,"yam-peleg\u002fExperiment21-7B"],["TruthfulQA",80.88,"4season\u002falignment_model_test"]],"hovertemplate":"Model Name: %{customdata[2]}\u003cbr\u003eMetric Name: %{customdata[0]}\u003cbr\u003eDate: %{x}\u003cbr\u003eMetric Value: %{y}","legendgroup":"TruthfulQA","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines+markers","name":"TruthfulQA","orientation":"v","showlegend":true,"x":["2023-08-25T13:05:50+00:00","2023-09-09T10:52:17+00:00","2023-10-16T12:46:18+00:00","2023-12-11T20:10:06+00:00","2023-12-14T06:54:16+00:00","2023-12-18T13:38:24+00:00","2024-01-21T09:10:58+00:00","2024-01-25T12:27:00+00:00","2024-02-22T11:52:10+00:00","2024-03-16T11:32:40+00:00"],"xaxis":"x","y":[39.76,61.56,65.81,68.26,70.49,76.73,78.02,79.36,79.79,80.88],"yaxis":"y","type":"scatter"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"date"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"score"},"range":[0,100]},"legend":{"title":{"text":"task"},"tracegroupgap":0,"x":0.8,"y":0,"traceorder":"normal"},"title":{"text":"Top Scores and Human Baseline Over Time (from last update)"},"shapes":[{"line":{"color":"#636efa","dash":"dot"},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":80.0,"y1":80.0,"yref":"y"},{"line":{"color":"#ab63fa","dash":"dot"},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":95.0,"y1":95.0,"yref":"y"},{"line":{"color":"#EF553B","dash":"dot"},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":89.8,"y1":89.8,"yref":"y"},{"line":{"color":"#19d3f3","dash":"dot"},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":94.0,"y1":94.0,"yref":"y"},{"line":{"color":"#00cc96","dash":"dot"},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":94.0,"y1":94.0,"yref":"y"},{"line":{"color":"#FFA15A","dash":"dot"},"type":"line","x0":0,"x1":1,"xref":"x domain","y0":100,"y1":100,"yref":"y"}],"annotations":[{"font":{"color":"#636efa","size":10},"showarrow":false,"text":"ARC human baseline","x":0,"xanchor":"left","xref":"x domain","y":80.0,"yanchor":"top","yref":"y"},{"font":{"color":"#ab63fa","size":10},"showarrow":false,"text":"HellaSwag human baseline","x":0,"xanchor":"left","xref":"x domain","y":95.0,"yanchor":"bottom","yref":"y"},{"font":{"color":"#EF553B","size":10},"showarrow":false,"text":"MMLU human baseline","x":0,"xanchor":"left","xref":"x domain","y":89.8,"yanchor":"top","yref":"y"},{"font":{"color":"#19d3f3","size":10},"showarrow":false,"text":"TruthfulQA human baseline","x":0,"xanchor":"left","xref":"x domain","y":94.0,"yanchor":"top","yref":"y"},{"font":{"color":"#00cc96","size":10},"showarrow":false,"text":"Winogrande human baseline","x":0,"xanchor":"left","xref":"x domain","y":94.0,"yanchor":"top","yref":"y"},{"font":{"color":"#FFA15A","size":10},"showarrow":false,"text":"GSM8K human baseline","x":0,"xanchor":"left","xref":"x domain","y":100,"yanchor":"top","yref":"y"}]}, {"responsive": true} ) }; </script> </div>
src/fragments/rankings_change.html ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <div> <script type="text/javascript">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>
2
+ <div id="61bc0340-8a85-4910-892e-d2bdf503901b" class="plotly-graph-div" style="height:500px; width:700px;"></div> <script type="text/javascript"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("61bc0340-8a85-4910-892e-d2bdf503901b")) { Plotly.newPlot( "61bc0340-8a85-4910-892e-d2bdf503901b", [{"alignmentgroup":"True","hovertemplate":"rank_change=%{marker.color}\u003cbr\u003efullname=%{y}\u003cbr\u003erank_change_info=%{text}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":[-59.0,-50.0,-48.0,-36.0,-34.5,-33.5,-33.0,-32.0,-32.0,-30.0,30.0,31.0,33.0,33.0,36.0,37.0,39.0,42.0,43.0,56.0],"coloraxis":"coloraxis","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"h","showlegend":false,"text":["72 β†’ 13","97 β†’ 47","57 β†’ 9","77 β†’ 41","167 β†’ 133","167 β†’ 134","69 β†’ 36","55 β†’ 23","98 β†’ 66","80 β†’ 50","124 β†’ 154","126 β†’ 157","59 β†’ 92","53 β†’ 86","60 β†’ 96","9 β†’ 46","30 β†’ 69","46 β†’ 88","5 β†’ 48","4 β†’ 60"],"textposition":"outside","x":[-59.0,-50.0,-48.0,-36.0,-34.5,-33.5,-33.0,-32.0,-32.0,-30.0,30.0,31.0,33.0,33.0,36.0,37.0,39.0,42.0,43.0,56.0],"xaxis":"x","y":["01-ai\u002fYi-1.5-34B-32K","01-ai\u002fYi-1.5-9B-32K","Qwen\u002fQwen1.5-32B-Chat","Intel\u002fneural-chat-7b-v3-1","gpt2","openai-community\u002fgpt2","openchat\u002fopenchat_3.5","01-ai\u002fYi-34B-Chat","Qwen\u002fQwen1.5-7B-Chat","HuggingFaceH4\u002fzephyr-7b-alpha","stabilityai\u002fstablelm-2-1_6b","tiiuae\u002ffalcon-7b","meta-llama\u002fMeta-Llama-3-8B","stabilityai\u002fstablelm-2-12b","meta-llama\u002fLlama-2-70b-chat-hf","upstage\u002fSOLAR-10.7B-Instruct-v1.0","stabilityai\u002fstablelm-2-12b-chat","tiiuae\u002ffalcon-11B","mlabonne\u002fBeyonder-4x7B-v3","mlabonne\u002fAlphaMonarch-7B"],"yaxis":"y","type":"bar"}], {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"Rank change"},"tickfont":{"size":14},"range":[-85,85]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"Model"},"autorange":"reversed"},"coloraxis":{"colorbar":{"title":{"text":"rank_change"}},"colorscale":[[0.0,"#FF9D00"],[1.0,"#32343D"]],"showscale":false},"legend":{"tracegroupgap":0},"title":{"text":"Top and Bottom Changes in Rankings from v1 to v2"},"barmode":"relative","bargap":0.1,"paper_bgcolor":"rgba(0,0,0,0)","plot_bgcolor":"rgba(0,0,0,0)","width":700,"height":500,"showlegend":false}, {"responsive": true} ) }; </script> </div>