crfm-helm 0.5.0__tar.gz → 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (701) hide show
  1. {crfm_helm-0.5.0/src/crfm_helm.egg-info → crfm_helm-0.5.2}/PKG-INFO +19 -5
  2. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/setup.cfg +21 -5
  3. {crfm_helm-0.5.0 → crfm_helm-0.5.2/src/crfm_helm.egg-info}/PKG-INFO +19 -5
  4. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/SOURCES.txt +49 -4
  5. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/requires.txt +22 -4
  6. crfm_helm-0.5.2/src/helm/benchmark/adaptation/adapter_spec.py +129 -0
  7. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/in_context_learning_multimodal_adapter.py +1 -0
  8. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/multimodal_prompt.py +7 -0
  9. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py +2 -0
  10. crfm_helm-0.5.2/src/helm/benchmark/annotation/air_bench_annotator.py +64 -0
  11. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/annotator_factory.py +6 -0
  12. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/lilypond_compiler_annotator.py +1 -1
  13. crfm_helm-0.5.2/src/helm/benchmark/annotation/live_qa_annotator.py +84 -0
  14. crfm_helm-0.5.2/src/helm/benchmark/annotation/medication_qa_annotator.py +81 -0
  15. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/perturbation.py +17 -1
  16. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/test_perturbation.py +30 -0
  17. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/translate_perturbation.py +1 -0
  18. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/huggingface_registration.py +16 -6
  19. crfm_helm-0.5.2/src/helm/benchmark/metrics/air_bench_metrics.py +56 -0
  20. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/efficiency_metrics.py +9 -2
  21. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/evaluate_reference_metrics.py +16 -0
  22. crfm_helm-0.5.2/src/helm/benchmark/metrics/fin_qa_metrics.py +60 -0
  23. crfm_helm-0.5.2/src/helm/benchmark/metrics/fin_qa_metrics_helper.py +398 -0
  24. crfm_helm-0.5.2/src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py +126 -0
  25. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/instruction_following_critique_metrics.py +1 -0
  26. crfm_helm-0.5.2/src/helm/benchmark/metrics/live_qa_metrics.py +23 -0
  27. crfm_helm-0.5.2/src/helm/benchmark/metrics/medication_qa_metrics.py +23 -0
  28. crfm_helm-0.5.2/src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py +185 -0
  29. crfm_helm-0.5.2/src/helm/benchmark/metrics/reka_vibe_critique_metrics.py +158 -0
  30. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/unitxt_metrics.py +20 -10
  31. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/emd_utils.py +4 -0
  32. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/image_metrics.py +104 -21
  33. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/model_metadata_registry.py +5 -1
  34. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/schema.py +54 -4
  35. crfm_helm-0.5.2/src/helm/benchmark/presentation/test_schema.py +11 -0
  36. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run.py +16 -2
  37. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_expander.py +112 -63
  38. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_spec_factory.py +15 -10
  39. crfm_helm-0.5.2/src/helm/benchmark/run_specs/air_bench_run_specs.py +40 -0
  40. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/classic_run_specs.py +15 -11
  41. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/decodingtrust_run_specs.py +3 -1
  42. crfm_helm-0.5.2/src/helm/benchmark/run_specs/experimental_run_specs.py +33 -0
  43. crfm_helm-0.5.2/src/helm/benchmark/run_specs/finance_run_specs.py +33 -0
  44. crfm_helm-0.5.2/src/helm/benchmark/run_specs/vlm_run_specs.py +880 -0
  45. crfm_helm-0.5.2/src/helm/benchmark/scenarios/air_bench_scenario.py +50 -0
  46. crfm_helm-0.5.2/src/helm/benchmark/scenarios/ci_mcqa_scenario.py +80 -0
  47. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/entity_data_imputation_scenario.py +8 -2
  48. crfm_helm-0.5.2/src/helm/benchmark/scenarios/fin_qa_scenario.py +117 -0
  49. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/legalbench_scenario.py +6 -2
  50. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/math_scenario.py +1 -1
  51. crfm_helm-0.5.2/src/helm/benchmark/scenarios/test_air_bench_scenario.py +27 -0
  52. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/a_okvqa_scenario.py +83 -0
  53. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/bingo_scenario.py +3 -3
  54. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/crossmodal_3600_scenario.py +134 -0
  55. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/flickr30k_scenario.py +74 -0
  56. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/gqa_scenario.py +91 -0
  57. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/hateful_memes_scenario.py +4 -2
  58. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/image2structure_scenario.py +13 -2
  59. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/latex_scenario.py +1 -5
  60. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/musicsheet_scenario.py +1 -5
  61. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage_scenario.py +5 -3
  62. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/math_vista_scenario.py +117 -0
  63. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/mm_safety_bench_scenario.py +103 -0
  64. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/mscoco_captioning_scenario.py +92 -0
  65. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/mscoco_categorization_scenario.py +117 -0
  66. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/originality_scenario.py +35 -0
  67. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/pairs_scenario.py +247 -0
  68. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py +3 -3
  69. crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py +95 -0
  70. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py +2 -2
  71. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/vqa_scenario.py +4 -2
  72. crfm_helm-0.5.2/src/helm/benchmark/static/schema_air_bench.yaml +3149 -0
  73. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_classic.yaml +3 -59
  74. crfm_helm-0.5.2/src/helm/benchmark/static/schema_finance.yaml +143 -0
  75. crfm_helm-0.5.2/src/helm/benchmark/static/schema_image2structure.yaml +447 -0
  76. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_instruction_following.yaml +3 -52
  77. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_lite.yaml +3 -61
  78. crfm_helm-0.5.2/src/helm/benchmark/static/schema_medical.yaml +255 -0
  79. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_mmlu.yaml +3 -61
  80. crfm_helm-0.5.2/src/helm/benchmark/static/schema_tables.yaml +200 -0
  81. crfm_helm-0.5.2/src/helm/benchmark/static/schema_thai.yaml +223 -0
  82. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_unitxt.yaml +3 -61
  83. crfm_helm-0.5.2/src/helm/benchmark/static/schema_vhelm.yaml +824 -0
  84. crfm_helm-0.5.2/src/helm/benchmark/static/schema_vhelm_lite.yaml +109 -0
  85. crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png +0 -0
  86. crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/index-30dbceba.js +10 -0
  87. crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/index-66b02d40.css +1 -0
  88. crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/overview-74aea3d8.png +0 -0
  89. crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png +0 -0
  90. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/index.html +2 -2
  91. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/anthropic_client.py +78 -14
  92. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/auto_client.py +11 -0
  93. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/client.py +24 -7
  94. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/cohere_client.py +98 -3
  95. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/huggingface_client.py +71 -12
  96. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/openai_client.py +11 -5
  97. crfm_helm-0.5.2/src/helm/clients/reka_client.py +189 -0
  98. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/test_client.py +3 -3
  99. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/test_huggingface_client.py +19 -3
  100. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/test_together_client.py +72 -2
  101. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/together_client.py +199 -2
  102. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vertexai_client.py +117 -64
  103. crfm_helm-0.5.2/src/helm/clients/vision_language/huggingface_vision2seq_client.py +145 -0
  104. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/huggingface_vlm_client.py +12 -4
  105. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/idefics_client.py +2 -2
  106. crfm_helm-0.5.2/src/helm/clients/vision_language/paligemma_client.py +146 -0
  107. crfm_helm-0.5.2/src/helm/clients/vision_language/palmyra_vision_client.py +84 -0
  108. crfm_helm-0.5.2/src/helm/clients/yi_client.py +31 -0
  109. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/critique_request.py +10 -1
  110. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/images_utils.py +29 -3
  111. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/config/model_deployments.yaml +504 -12
  112. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/config/model_metadata.yaml +579 -52
  113. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/config/tokenizer_configs.yaml +100 -1
  114. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/model_critique_client.py +32 -4
  115. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/services/server_service.py +1 -1
  116. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/auto_tokenizer.py +1 -1
  117. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/cohere_tokenizer.py +44 -2
  118. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/huggingface_tokenizer.py +36 -13
  119. crfm_helm-0.5.2/src/helm/tokenizers/test_cohere_tokenizer.py +39 -0
  120. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/test_huggingface_tokenizer.py +5 -1
  121. crfm_helm-0.5.0/src/helm/benchmark/adaptation/adapter_spec.py +0 -128
  122. crfm_helm-0.5.0/src/helm/benchmark/run_specs/vlm_run_specs.py +0 -501
  123. crfm_helm-0.5.0/src/helm/benchmark/static/schema_vlm.yaml +0 -576
  124. crfm_helm-0.5.0/src/helm/benchmark/static_build/assets/index-5088afcb.css +0 -1
  125. crfm_helm-0.5.0/src/helm/benchmark/static_build/assets/index-d839df55.js +0 -9
  126. crfm_helm-0.5.0/src/helm/benchmark/test_model_deployment_definition.py +0 -90
  127. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/LICENSE +0 -0
  128. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/MANIFEST.in +0 -0
  129. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/README.md +0 -0
  130. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/docs/tutorial.md +0 -0
  131. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/pyproject.toml +0 -0
  132. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/dependency_links.txt +0 -0
  133. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/entry_points.txt +0 -0
  134. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/not-zip-safe +0 -0
  135. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/top_level.txt +0 -0
  136. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/__init__.py +0 -0
  137. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/__init__.py +0 -0
  138. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/__init__.py +0 -0
  139. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/__init__.py +0 -0
  140. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/adapter.py +0 -0
  141. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/adapter_factory.py +0 -0
  142. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/binary_ranking_adapter.py +0 -0
  143. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/generation_adapter.py +0 -0
  144. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/in_context_learning_adapter.py +0 -0
  145. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/language_modeling_adapter.py +0 -0
  146. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/__init__.py +0 -0
  147. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/generation_multimodal_adapter.py +0 -0
  148. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimodal_adapter.py +0 -0
  149. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py +0 -0
  150. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multiple_choice_calibrated_adapter.py +0 -0
  151. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_adapter.py +0 -0
  152. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multiple_choice_separate_adapter.py +0 -0
  153. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_adapter.py +0 -0
  154. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_generation_adapter.py +0 -0
  155. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_language_modeling_adapter.py +0 -0
  156. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_multiple_choice_joint_adapter.py +0 -0
  157. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/common_adapter_specs.py +0 -0
  158. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/prompt.py +0 -0
  159. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/request_state.py +0 -0
  160. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/scenario_state.py +0 -0
  161. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/__init__.py +0 -0
  162. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/annotator.py +0 -0
  163. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/__init__.py +0 -0
  164. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/image_compiler_annotator.py +0 -0
  165. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/latex_compiler_annotator.py +0 -0
  166. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/webpage_compiler_annotator.py +0 -0
  167. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/test_annotator_factory.py +0 -0
  168. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/test_dummy_annotator.py +0 -0
  169. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/annotation_executor.py +0 -0
  170. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/__init__.py +0 -0
  171. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/cleva_perturbation.py +0 -0
  172. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/contraction_expansion_perturbation.py +0 -0
  173. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/contrast_sets_perturbation.py +0 -0
  174. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/correct_to_misspelling.json +0 -0
  175. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/data_augmenter.py +0 -0
  176. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/dialect_perturbation.py +0 -0
  177. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/extra_space_perturbation.py +0 -0
  178. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/filler_words_perturbation.py +0 -0
  179. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/gender_perturbation.py +0 -0
  180. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/lowercase_perturbation.py +0 -0
  181. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/mild_mix_perturbation.py +0 -0
  182. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/misspelling_perturbation.py +0 -0
  183. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/person_name_perturbation.py +0 -0
  184. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/perturbation_description.py +0 -0
  185. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/space_perturbation.py +0 -0
  186. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/suffix_perturbation.py +0 -0
  187. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/synonym_perturbation.py +0 -0
  188. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/typos_perturbation.py +0 -0
  189. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/config_registry.py +0 -0
  190. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/__init__.py +0 -0
  191. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/data_overlap_spec.py +0 -0
  192. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/export_scenario_text.py +0 -0
  193. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/light_scenario.py +0 -0
  194. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/data_preprocessor.py +0 -0
  195. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json +0 -0
  196. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json +0 -0
  197. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/efficiency_data/training_efficiency.json +0 -0
  198. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/executor.py +0 -0
  199. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/__init__.py +0 -0
  200. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/basic_metrics.py +0 -0
  201. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/bbq_metrics.py +0 -0
  202. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/bias_metrics.py +0 -0
  203. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/bias_word_lists.py +0 -0
  204. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/classification_metrics.py +0 -0
  205. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/cleva_accuracy_metrics.py +0 -0
  206. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/cleva_harms_metrics.py +0 -0
  207. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/cleva_metrics_helper.py +0 -0
  208. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/code_metrics.py +0 -0
  209. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/code_metrics_helper.py +0 -0
  210. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/common_metric_specs.py +0 -0
  211. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/copyright_metrics.py +0 -0
  212. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_fairness_metrics.py +0 -0
  213. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_ood_knowledge_metrics.py +0 -0
  214. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_privacy_metrics.py +0 -0
  215. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_stereotype_bias_metrics.py +0 -0
  216. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/disinformation_metrics.py +0 -0
  217. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/dry_run_metrics.py +0 -0
  218. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/evaluate_instances_metric.py +0 -0
  219. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/__init__.py +0 -0
  220. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/aesthetics_metrics.py +0 -0
  221. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/aesthetics_scorer.py +0 -0
  222. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/clip_score_metrics.py +0 -0
  223. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/denoised_runtime_metric.py +0 -0
  224. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detection_metrics.py +0 -0
  225. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detectors/__init__.py +0 -0
  226. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detectors/base_detector.py +0 -0
  227. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detectors/vitdet.py +0 -0
  228. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/efficiency_metrics.py +0 -0
  229. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fidelity_metrics.py +0 -0
  230. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension/__init__.py +0 -0
  231. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension/fractal_dimension_util.py +0 -0
  232. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension/test_fractal_dimension_util.py +0 -0
  233. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension_metric.py +0 -0
  234. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/gender_metrics.py +0 -0
  235. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/image_critique_metrics.py +0 -0
  236. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/lpips_metrics.py +0 -0
  237. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/multi_scale_ssim_metrics.py +0 -0
  238. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/nsfw_detector.py +0 -0
  239. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/nsfw_metrics.py +0 -0
  240. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/nudity_metrics.py +0 -0
  241. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/photorealism_critique_metrics.py +0 -0
  242. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/psnr_metrics.py +0 -0
  243. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16/__init__.py +0 -0
  244. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16/q16_toxicity_detector.py +0 -0
  245. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16/test_q16.py +0 -0
  246. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16_toxicity_metrics.py +0 -0
  247. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/skin_tone_metrics.py +0 -0
  248. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/uiqi_metrics.py +0 -0
  249. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark/__init__.py +0 -0
  250. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark/test_watermark_detector.py +0 -0
  251. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark/watermark_detector.py +0 -0
  252. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark_metrics.py +0 -0
  253. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/language_modeling_metrics.py +0 -0
  254. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/machine_translation_metrics.py +0 -0
  255. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/metric.py +0 -0
  256. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/metric_name.py +0 -0
  257. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/metric_service.py +0 -0
  258. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/numeracy_metrics.py +0 -0
  259. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/paraphrase_generation_metrics.py +0 -0
  260. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/ranking_metrics.py +0 -0
  261. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/reference_metric.py +0 -0
  262. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/statistic.py +0 -0
  263. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summac/__init__.py +0 -0
  264. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summac/model_summac.py +0 -0
  265. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summac/utils_misc.py +0 -0
  266. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summarization_critique_metrics.py +0 -0
  267. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summarization_metrics.py +0 -0
  268. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_bias_metrics.py +0 -0
  269. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_classification_metrics.py +0 -0
  270. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_disinformation_metrics.py +0 -0
  271. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_evaluate_reference_metrics.py +0 -0
  272. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_metric.py +0 -0
  273. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_numeracy_metrics.py +0 -0
  274. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_statistic.py +0 -0
  275. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/__init__.py +0 -0
  276. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/ai21_token_cost_estimator.py +0 -0
  277. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/auto_token_cost_estimator.py +0 -0
  278. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/cohere_token_cost_estimator.py +0 -0
  279. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/free_token_cost_estimator.py +0 -0
  280. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/gooseai_token_cost_estimator.py +0 -0
  281. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/openai_token_cost_estimator.py +0 -0
  282. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/test_ai21_token_cost_estimator.py +0 -0
  283. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/test_openai_token_cost_estimator.py +0 -0
  284. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/token_cost_estimator.py +0 -0
  285. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/toxicity_metrics.py +0 -0
  286. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/toxicity_utils.py +0 -0
  287. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/__init__.py +0 -0
  288. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/image_utils.py +0 -0
  289. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/model_deployment_registry.py +0 -0
  290. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/multi_gpu_runner.py +0 -0
  291. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/__init__.py +0 -0
  292. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/contamination.py +0 -0
  293. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/create_plots.py +0 -0
  294. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/run_display.py +0 -0
  295. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/run_entry.py +0 -0
  296. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/summarize.py +0 -0
  297. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/table.py +0 -0
  298. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_contamination.py +0 -0
  299. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_create_plots.py +0 -0
  300. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_run_entry.py +0 -0
  301. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_summarize.py +0 -0
  302. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_spec.py +0 -0
  303. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/__init__.py +0 -0
  304. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/cleva_run_specs.py +0 -0
  305. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/heim_run_specs.py +0 -0
  306. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/instruction_following_run_specs.py +0 -0
  307. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/lite_run_specs.py +0 -0
  308. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/simple_run_specs.py +0 -0
  309. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/unitxt_run_specs.py +0 -0
  310. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/runner.py +0 -0
  311. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/runner_config_registry.py +0 -0
  312. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/__init__.py +0 -0
  313. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py +0 -0
  314. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/babi_qa_scenario.py +0 -0
  315. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/bbq_scenario.py +0 -0
  316. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/big_bench_scenario.py +0 -0
  317. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/blimp_scenario.py +0 -0
  318. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/bold_scenario.py +0 -0
  319. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/boolq_scenario.py +0 -0
  320. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/civil_comments_scenario.py +0 -0
  321. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/cleva_scenario.py +0 -0
  322. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/code_scenario.py +0 -0
  323. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/code_scenario_apps_pinned_file_order.py +0 -0
  324. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/code_scenario_helper.py +0 -0
  325. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/commonsense_scenario.py +0 -0
  326. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/copyright_scenario.py +0 -0
  327. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/covid_dialog_scenario.py +0 -0
  328. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/custom_mcqa_scenario.py +0 -0
  329. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_adv_demonstration_scenario.py +0 -0
  330. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_adv_robustness_scenario.py +0 -0
  331. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_fairness_scenario.py +0 -0
  332. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_machine_ethics_scenario.py +0 -0
  333. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_ood_robustness_scenario.py +0 -0
  334. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_privacy_scenario.py +0 -0
  335. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_stereotype_bias_scenario.py +0 -0
  336. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_toxicity_prompts_scenario.py +0 -0
  337. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/dialogue_scenarios.py +0 -0
  338. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/disinformation_scenario.py +0 -0
  339. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/dyck_language_scenario.py +0 -0
  340. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/entity_matching_scenario.py +0 -0
  341. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py +0 -0
  342. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/grammar.py +0 -0
  343. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/grammar_scenario.py +0 -0
  344. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/gsm_scenario.py +0 -0
  345. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/ice_scenario.py +0 -0
  346. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/ice_scenario_pinned_file_order.py +0 -0
  347. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/__init__.py +0 -0
  348. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/common_syntactic_processes_scenario.py +0 -0
  349. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/cub200_scenario.py +0 -0
  350. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/daily_dalle_scenario.py +0 -0
  351. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/demographic_stereotypes_scenario.py +0 -0
  352. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/detection_scenario.py +0 -0
  353. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/draw_bench_scenario.py +0 -0
  354. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/i2p_scenario.py +0 -0
  355. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/landing_page_scenario.py +0 -0
  356. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/logos_scenario.py +0 -0
  357. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/magazine_cover_scenario.py +0 -0
  358. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/mental_disorders_scenario.py +0 -0
  359. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/mscoco_scenario.py +0 -0
  360. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/paint_skills_scenario.py +0 -0
  361. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/parti_prompts_scenario.py +0 -0
  362. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/radiology_scenario.py +0 -0
  363. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/relational_understanding_scenario.py +0 -0
  364. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/time_most_significant_historical_figures_scenario.py +0 -0
  365. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/winoground_scenario.py +0 -0
  366. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/imdb_scenario.py +0 -0
  367. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/imdb_scenario_pinned_file_order.py +0 -0
  368. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/interactive_qa_mmlu_scenario.py +0 -0
  369. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/koala_scenario.py +0 -0
  370. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/legal_summarization_scenario.py +0 -0
  371. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/legal_support_scenario.py +0 -0
  372. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lex_glue_scenario.py +0 -0
  373. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lextreme_scenario.py +0 -0
  374. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/live_qa_scenario.py +0 -0
  375. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lm_entry_scenario.py +0 -0
  376. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lsat_qa_scenario.py +0 -0
  377. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/me_q_sum_scenario.py +0 -0
  378. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_dialog_scenario.py +0 -0
  379. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_mcqa_scenario.py +0 -0
  380. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_paragraph_simplification_scenario.py +0 -0
  381. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_qa_scenario.py +0 -0
  382. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/medication_qa_scenario.py +0 -0
  383. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/mmlu_scenario.py +0 -0
  384. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/msmarco_scenario.py +0 -0
  385. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/narrativeqa_scenario.py +0 -0
  386. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/natural_qa_scenario.py +0 -0
  387. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/newsqa_scenario.py +0 -0
  388. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/numeracy_scenario.py +0 -0
  389. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/open_assistant_scenario.py +0 -0
  390. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/opinions_qa_scenario.py +0 -0
  391. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/pubmed_qa_scenario.py +0 -0
  392. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/quac_scenario.py +0 -0
  393. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/raft_scenario.py +0 -0
  394. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/real_toxicity_prompts_scenario.py +0 -0
  395. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/scenario.py +0 -0
  396. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/self_instruct_scenario.py +0 -0
  397. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/simple_scenarios.py +0 -0
  398. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/summarization_scenario.py +0 -0
  399. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py +0 -0
  400. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py +0 -0
  401. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py +0 -0
  402. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_grammar.py +0 -0
  403. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_math_scenario.py +0 -0
  404. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_scenario.py +0 -0
  405. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_simple_scenarios.py +0 -0
  406. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/thai_exam_scenario.py +0 -0
  407. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/the_pile_scenario.py +0 -0
  408. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/truthful_qa_scenario.py +0 -0
  409. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/twitter_aae_scenario.py +0 -0
  410. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/unitxt_scenario.py +0 -0
  411. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/verifiability_judgment_scenario.py +0 -0
  412. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vicuna_scenario.py +0 -0
  413. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/__init__.py +0 -0
  414. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/heim_human_eval_scenario.py +0 -0
  415. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/__init__.py +0 -0
  416. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/chart2csv_scenario.py +0 -0
  417. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/utils_latex.py +0 -0
  418. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/__init__.py +0 -0
  419. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/driver.py +0 -0
  420. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/jekyll_server.py +0 -0
  421. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/utils.py +0 -0
  422. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mementos_scenario.py +0 -0
  423. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mme_scenario.py +0 -0
  424. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mmmu_scenario.py +0 -0
  425. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/multipanelvqa_scenario.py +0 -0
  426. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/pope_scenario.py +0 -0
  427. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py +0 -0
  428. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/wikifact_scenario.py +0 -0
  429. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/wikitext_103_scenario.py +0 -0
  430. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/wmt_14_scenario.py +0 -0
  431. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/server.py +0 -0
  432. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/slurm_jobs.py +0 -0
  433. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/slurm_runner.py +0 -0
  434. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/benchmarking.css +0 -0
  435. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/benchmarking.js +0 -0
  436. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/config.js +0 -0
  437. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/contamination.yaml +0 -0
  438. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/general.js +0 -0
  439. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/crfm-logo.png +0 -0
  440. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/helm-logo-simple.png +0 -0
  441. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/helm-logo.png +0 -0
  442. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/language-model-helm.png +0 -0
  443. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/ai21.png +0 -0
  444. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/anthropic.png +0 -0
  445. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/bigscience.png +0 -0
  446. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/cohere.png +0 -0
  447. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/eleutherai.png +0 -0
  448. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/google.png +0 -0
  449. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/meta.png +0 -0
  450. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/microsoft.png +0 -0
  451. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/nvidia.png +0 -0
  452. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/openai.png +0 -0
  453. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/together.png +0 -0
  454. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/tsinghua-keg.png +0 -0
  455. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/yandex.png +0 -0
  456. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/scenarios-by-metrics.png +0 -0
  457. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/taxonomy-scenarios.png +0 -0
  458. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/index.html +0 -0
  459. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/info-icon.png +0 -0
  460. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/json-urls.js +0 -0
  461. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/plot-captions.js +0 -0
  462. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static/utils.js +0 -0
  463. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/01-694cb9b7.png +0 -0
  464. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/ai21-0eb91ec3.png +0 -0
  465. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/aleph-alpha-7ce10034.png +0 -0
  466. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/anthropic-70d8bc39.png +0 -0
  467. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/bigscience-7f0400c0.png +0 -0
  468. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/cohere-3550c6cb.png +0 -0
  469. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/crfm-logo-74391ab8.png +0 -0
  470. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/eleutherai-b9451114.png +0 -0
  471. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/google-06d997ad.png +0 -0
  472. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png +0 -0
  473. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png +0 -0
  474. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png +0 -0
  475. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/meta-5580e9f1.png +0 -0
  476. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/microsoft-f5ee5016.png +0 -0
  477. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/mistral-18e1be23.png +0 -0
  478. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/nvidia-86fa75c1.png +0 -0
  479. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/openai-3f8653e4.png +0 -0
  480. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/react-d4a0b69b.js +0 -0
  481. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/recharts-6d337683.js +0 -0
  482. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/tii-24de195c.png +0 -0
  483. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/together-a665a35b.png +0 -0
  484. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/tremor-54a99cc4.js +0 -0
  485. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/tsinghua-keg-97d4b395.png +0 -0
  486. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/vhelm-framework-cde7618a.png +0 -0
  487. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/vhelm-model-6d812526.png +0 -0
  488. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/yandex-38e09d70.png +0 -0
  489. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/config.js +0 -0
  490. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/test_data_preprocessor.py +0 -0
  491. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/test_run_expander.py +0 -0
  492. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/tokenizer_config_registry.py +0 -0
  493. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/__init__.py +0 -0
  494. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/ai21_window_service.py +0 -0
  495. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/cohere_window_service.py +0 -0
  496. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/default_window_service.py +0 -0
  497. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/encoder_decoder_window_service.py +0 -0
  498. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/ice_window_service.py +0 -0
  499. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/__init__.py +0 -0
  500. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/clip_window_service.py +0 -0
  501. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/lexica_search_window_service.py +0 -0
  502. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/openai_dalle_window_service.py +0 -0
  503. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/test_clip_window_service.py +0 -0
  504. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/test_openai_dalle_window_service.py +0 -0
  505. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/local_window_service.py +0 -0
  506. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/no_decoding_window_service.py +0 -0
  507. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_ai21_window_service.py +0 -0
  508. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_anthropic_window_service.py +0 -0
  509. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_bloom_window_service.py +0 -0
  510. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_cohere_window_service.py +0 -0
  511. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_cohere_window_service_utils.py +0 -0
  512. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_flan_t5_window_service.py +0 -0
  513. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gpt2_window_service.py +0 -0
  514. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gpt4_window_service.py +0 -0
  515. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gptj_window_service.py +0 -0
  516. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gptneox_window_service.py +0 -0
  517. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_ice_window_service.py +0 -0
  518. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_openai_window_service.py +0 -0
  519. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_opt_window_service.py +0 -0
  520. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_palmyra_window_service.py +0 -0
  521. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_t0pp_window_service.py +0 -0
  522. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_t511b_window_service.py +0 -0
  523. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_ul2_window_service.py +0 -0
  524. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_utils.py +0 -0
  525. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_yalm_window_service.py +0 -0
  526. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/tokenizer_service.py +0 -0
  527. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/window_service.py +0 -0
  528. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/window_service_factory.py +0 -0
  529. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/yalm_window_service.py +0 -0
  530. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/__init__.py +0 -0
  531. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/ai21_client.py +0 -0
  532. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/ai21_utils.py +0 -0
  533. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/aleph_alpha_client.py +0 -0
  534. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/bedrock_client.py +0 -0
  535. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/bedrock_utils.py +0 -0
  536. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/clip_score_client.py +0 -0
  537. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/__init__.py +0 -0
  538. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/base_clip_scorer.py +0 -0
  539. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/clip_scorer.py +0 -0
  540. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/multilingual_clip_scorer.py +0 -0
  541. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/cohere_utils.py +0 -0
  542. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/gcs_client.py +0 -0
  543. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/google_client.py +0 -0
  544. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/google_translate_client.py +0 -0
  545. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/http_model_client.py +0 -0
  546. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/__init__.py +0 -0
  547. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/adobe_vision_client.py +0 -0
  548. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/aleph_alpha_image_generation_client.py +0 -0
  549. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/__init__.py +0 -0
  550. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/coglm_strategy.py +0 -0
  551. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/coglm_utils.py +0 -0
  552. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/__init__.py +0 -0
  553. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/direct_sr.py +0 -0
  554. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_model.py +0 -0
  555. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_sampling.py +0 -0
  556. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/iterative_sr.py +0 -0
  557. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_model.py +0 -0
  558. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_sampling.py +0 -0
  559. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/sr_group.py +0 -0
  560. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2_client.py +0 -0
  561. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle2_client.py +0 -0
  562. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle3_client.py +0 -0
  563. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/__init__.py +0 -0
  564. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/data.py +0 -0
  565. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/__init__.py +0 -0
  566. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/configuration.py +0 -0
  567. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/modeling.py +0 -0
  568. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/partitions.py +0 -0
  569. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/processor.py +0 -0
  570. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/text.py +0 -0
  571. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/tokenizer.py +0 -0
  572. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/utils.py +0 -0
  573. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/__init__.py +0 -0
  574. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/configuration_vqgan.py +0 -0
  575. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/convert_pt_model_to_jax.py +0 -0
  576. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/modeling_flax_vqgan.py +0 -0
  577. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini_client.py +0 -0
  578. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/deep_floyd_client.py +0 -0
  579. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/huggingface_diffusers_client.py +0 -0
  580. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/image_generation_client_utils.py +0 -0
  581. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/lexica_client.py +0 -0
  582. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/__init__.py +0 -0
  583. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/__init__.py +0 -0
  584. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage1/__init__.py +0 -0
  585. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage1/layers.py +0 -0
  586. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage1/vqgan.py +0 -0
  587. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage2/__init__.py +0 -0
  588. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage2/layers.py +0 -0
  589. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage2/transformer.py +0 -0
  590. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/tokenizer.py +0 -0
  591. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/__init__.py +0 -0
  592. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/config.py +0 -0
  593. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/sampling.py +0 -0
  594. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/utils.py +0 -0
  595. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle_client.py +0 -0
  596. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/nudity_check_client.py +0 -0
  597. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/image_generation/together_image_generation_client.py +0 -0
  598. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/lit_gpt_client.py +0 -0
  599. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/lit_gpt_generate.py +0 -0
  600. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/megatron_client.py +0 -0
  601. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/mistral_client.py +0 -0
  602. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/moderation_api_client.py +0 -0
  603. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/open_lm_client.py +0 -0
  604. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/palmyra_client.py +0 -0
  605. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/perspective_api_client.py +0 -0
  606. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/simple_client.py +0 -0
  607. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/test_auto_client.py +0 -0
  608. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/test_simple_client.py +0 -0
  609. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/toxicity_classifier_client.py +0 -0
  610. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/__init__.py +0 -0
  611. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/__init__.py +0 -0
  612. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/__init__.py +0 -0
  613. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/factory.py +0 -0
  614. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/flamingo.py +0 -0
  615. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/flamingo_lm.py +0 -0
  616. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/helpers.py +0 -0
  617. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/utils.py +0 -0
  618. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo_client.py +0 -0
  619. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vision_language/qwen_vlm_client.py +0 -0
  620. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/clients/vllm_client.py +0 -0
  621. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/__init__.py +0 -0
  622. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/authentication.py +0 -0
  623. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/cache.py +0 -0
  624. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/cache_backend_config.py +0 -0
  625. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/clip_score_request.py +0 -0
  626. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/codec.py +0 -0
  627. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/concurrency.py +0 -0
  628. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/credentials_utils.py +0 -0
  629. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/file_caches/__init__.py +0 -0
  630. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/file_caches/file_cache.py +0 -0
  631. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/file_caches/local_file_cache.py +0 -0
  632. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/file_caches/test_local_file_cache.py +0 -0
  633. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/file_upload_request.py +0 -0
  634. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/general.py +0 -0
  635. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/gpu_utils.py +0 -0
  636. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/hierarchical_logger.py +0 -0
  637. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/image_generation_parameters.py +0 -0
  638. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/key_value_store.py +0 -0
  639. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/media_object.py +0 -0
  640. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/moderations_api_request.py +0 -0
  641. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/mongo_key_value_store.py +0 -0
  642. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/multimodal_request_utils.py +0 -0
  643. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/nudity_check_request.py +0 -0
  644. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/object_spec.py +0 -0
  645. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/optional_dependencies.py +0 -0
  646. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/perspective_api_request.py +0 -0
  647. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/request.py +0 -0
  648. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/test_cache.py +0 -0
  649. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/test_codec.py +0 -0
  650. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/test_general.py +0 -0
  651. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/test_media_object.py +0 -0
  652. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/common/tokenization_request.py +0 -0
  653. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/config/__init__.py +0 -0
  654. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/__init__.py +0 -0
  655. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/accounts.py +0 -0
  656. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/cli.py +0 -0
  657. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/__init__.py +0 -0
  658. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/critique_client.py +0 -0
  659. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_critique_client.py +0 -0
  660. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_critique_exporter.py +0 -0
  661. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_critique_importer.py +0 -0
  662. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_utils.py +0 -0
  663. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/scale_critique_client.py +0 -0
  664. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/critique/surge_ai_critique_client.py +0 -0
  665. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/example_queries.py +0 -0
  666. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/query.py +0 -0
  667. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/retry.py +0 -0
  668. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/server.py +0 -0
  669. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/services/__init__.py +0 -0
  670. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/services/remote_service.py +0 -0
  671. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/services/service.py +0 -0
  672. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/services/test_remote_service.py +0 -0
  673. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/services/test_service.py +0 -0
  674. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/test_accounts.py +0 -0
  675. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/test_retry.py +0 -0
  676. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/__init__.py +0 -0
  677. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/auto_token_counter.py +0 -0
  678. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/test_auto_token_counter.py +0 -0
  679. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/token_counter.py +0 -0
  680. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/py.typed +0 -0
  681. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/__init__.py +0 -0
  682. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/ai21_tokenizer.py +0 -0
  683. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/aleph_alpha_tokenizer.py +0 -0
  684. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/anthropic_tokenizer.py +0 -0
  685. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/caching_tokenizer.py +0 -0
  686. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/http_model_tokenizer.py +0 -0
  687. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/ice_tokenizer.py +0 -0
  688. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/lit_gpt_tokenizer.py +0 -0
  689. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/simple_tokenizer.py +0 -0
  690. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/test_anthropic_tokenizer.py +0 -0
  691. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/test_ice_tokenizer.py +0 -0
  692. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/test_simple_tokenizer.py +0 -0
  693. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/test_yalm_tokenizer.py +0 -0
  694. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/tiktoken_tokenizer.py +0 -0
  695. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/tokenizer.py +0 -0
  696. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/vertexai_tokenizer.py +0 -0
  697. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer.py +0 -0
  698. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/__init__.py +0 -0
  699. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/test_yalm_tokenizer.py +0 -0
  700. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/voc_100b.sp +0 -0
  701. {crfm_helm-0.5.0 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/yalm_tokenizer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: crfm-helm
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Benchmark for language models
5
5
  Home-page: https://github.com/stanford-crfm/helm
6
6
  Author: Stanford CRFM
@@ -25,7 +25,7 @@ Requires-Dist: tqdm~=4.64
25
25
  Requires-Dist: zstandard~=0.18.0
26
26
  Requires-Dist: sqlitedict~=1.7
27
27
  Requires-Dist: bottle~=0.12.23
28
- Requires-Dist: datasets~=2.15
28
+ Requires-Dist: datasets~=2.17
29
29
  Requires-Dist: pyarrow>=11.0.0
30
30
  Requires-Dist: pyarrow-hotfix~=0.6
31
31
  Requires-Dist: nltk~=3.7
@@ -34,7 +34,7 @@ Requires-Dist: rouge-score~=0.1.2
34
34
  Requires-Dist: scipy~=1.10
35
35
  Requires-Dist: uncertainty-calibration~=0.1.4
36
36
  Requires-Dist: scikit-learn~=1.1
37
- Requires-Dist: transformers~=4.37
37
+ Requires-Dist: transformers~=4.40
38
38
  Requires-Dist: torch<3.0.0,>=1.13.1
39
39
  Requires-Dist: torchvision<3.0.0,>=0.14.1
40
40
  Requires-Dist: google-api-python-client~=2.64
@@ -77,6 +77,8 @@ Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
77
77
  Provides-Extra: aleph-alpha
78
78
  Requires-Dist: aleph-alpha-client~=2.14.0; extra == "aleph-alpha"
79
79
  Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
80
+ Provides-Extra: openvino
81
+ Requires-Dist: optimum[openvino]~=1.19; extra == "openvino"
80
82
  Provides-Extra: allenai
81
83
  Requires-Dist: ai2-olmo~=0.2; extra == "allenai"
82
84
  Provides-Extra: amazon
@@ -86,14 +88,18 @@ Requires-Dist: botocore~=1.31.57; extra == "amazon"
86
88
  Provides-Extra: anthropic
87
89
  Requires-Dist: anthropic~=0.17; extra == "anthropic"
88
90
  Requires-Dist: websocket-client~=1.3.2; extra == "anthropic"
91
+ Provides-Extra: cohere
92
+ Requires-Dist: cohere~=5.3; extra == "cohere"
89
93
  Provides-Extra: mistral
90
94
  Requires-Dist: mistralai~=0.0.11; extra == "mistral"
91
95
  Provides-Extra: openai
92
96
  Requires-Dist: openai~=1.0; extra == "openai"
93
- Requires-Dist: tiktoken~=0.3.3; extra == "openai"
97
+ Requires-Dist: tiktoken~=0.7; extra == "openai"
94
98
  Requires-Dist: pydantic~=2.0; extra == "openai"
95
99
  Provides-Extra: google
96
- Requires-Dist: google-cloud-aiplatform~=1.44; extra == "google"
100
+ Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
101
+ Provides-Extra: together
102
+ Requires-Dist: together~=1.1; extra == "together"
97
103
  Provides-Extra: tsinghua
98
104
  Requires-Dist: icetk~=0.0.4; extra == "tsinghua"
99
105
  Provides-Extra: yandex
@@ -103,11 +109,17 @@ Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
103
109
  Requires-Dist: crfm-helm[allenai]; extra == "models"
104
110
  Requires-Dist: crfm-helm[amazon]; extra == "models"
105
111
  Requires-Dist: crfm-helm[anthropic]; extra == "models"
112
+ Requires-Dist: crfm-helm[cohere]; extra == "models"
106
113
  Requires-Dist: crfm-helm[google]; extra == "models"
107
114
  Requires-Dist: crfm-helm[mistral]; extra == "models"
108
115
  Requires-Dist: crfm-helm[openai]; extra == "models"
116
+ Requires-Dist: crfm-helm[reka]; extra == "models"
117
+ Requires-Dist: crfm-helm[together]; extra == "models"
109
118
  Requires-Dist: crfm-helm[tsinghua]; extra == "models"
110
119
  Requires-Dist: crfm-helm[yandex]; extra == "models"
120
+ Requires-Dist: crfm-helm[openvino]; extra == "models"
121
+ Provides-Extra: reka
122
+ Requires-Dist: reka-api~=2.0.0; extra == "reka"
111
123
  Provides-Extra: vlm
112
124
  Requires-Dist: crfm-helm[openai]; extra == "vlm"
113
125
  Requires-Dist: einops~=0.7.0; extra == "vlm"
@@ -117,8 +129,10 @@ Requires-Dist: torch~=2.1.2; extra == "vlm"
117
129
  Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
118
130
  Requires-Dist: scipy~=1.10; extra == "vlm"
119
131
  Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
132
+ Requires-Dist: crfm-helm[reka]; extra == "vlm"
120
133
  Requires-Dist: crfm-helm[images]; extra == "vlm"
121
134
  Requires-Dist: crfm-helm[image2structure]; extra == "vlm"
135
+ Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
122
136
  Provides-Extra: image2structure
123
137
  Requires-Dist: crfm-helm[images]; extra == "image2structure"
124
138
  Requires-Dist: latex~=0.7.0; extra == "image2structure"
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = crfm-helm
3
- version = 0.5.0
3
+ version = 0.5.2
4
4
  author = Stanford CRFM
5
5
  author_email = contact-crfm@stanford.edu
6
6
  description = Benchmark for language models
@@ -35,7 +35,7 @@ install_requires =
35
35
  sqlitedict~=1.7
36
36
  bottle~=0.12.23
37
37
 
38
- datasets~=2.15
38
+ datasets~=2.17
39
39
  pyarrow>=11.0.0 # Pinned transitive dependency for datasets; workaround for #1026
40
40
  pyarrow-hotfix~=0.6 # Hotfix for CVE-2023-47248
41
41
 
@@ -46,7 +46,7 @@ install_requires =
46
46
  uncertainty-calibration~=0.1.4
47
47
  scikit-learn~=1.1
48
48
 
49
- transformers~=4.37 # For anthropic_client, vision_language.huggingface_vlm_client, huggingface_client, huggingface_tokenizer, test_openai_token_cost_estimator, model_summac (via summarization_metrics)
49
+ transformers~=4.40 # For anthropic_client, vision_language.huggingface_vlm_client, huggingface_client, huggingface_tokenizer, test_openai_token_cost_estimator, model_summac (via summarization_metrics)
50
50
  torch>=1.13.1,<3.0.0 # For huggingface_client, yalm_tokenizer, model_summac (via summarization_metrics)
51
51
  torchvision>=0.14.1,<3.0.0 # For huggingface_client, yalm_tokenizer, model_summac (via summarization_metrics)
52
52
 
@@ -92,6 +92,8 @@ unitxt =
92
92
  aleph-alpha =
93
93
  aleph-alpha-client~=2.14.0
94
94
  tokenizers>=0.13.3
95
+ openvino =
96
+ optimum[openvino]~=1.19
95
97
  allenai =
96
98
  ai2-olmo~=0.2
97
99
  amazon =
@@ -101,14 +103,18 @@ amazon =
101
103
  anthropic =
102
104
  anthropic~=0.17
103
105
  websocket-client~=1.3.2 # For legacy stanford-online-all-v4-s3
106
+ cohere =
107
+ cohere~=5.3
104
108
  mistral =
105
109
  mistralai~=0.0.11
106
110
  openai =
107
111
  openai~=1.0
108
- tiktoken~=0.3.3
112
+ tiktoken~=0.7
109
113
  pydantic~=2.0 # For model_dump(mode="json") - openai only requires pydantic>=1.9.0
110
114
  google =
111
- google-cloud-aiplatform~=1.44
115
+ google-cloud-aiplatform~=1.48
116
+ together =
117
+ together~=1.1
112
118
  tsinghua =
113
119
  icetk~=0.0.4
114
120
  yandex =
@@ -118,11 +124,17 @@ models =
118
124
  crfm-helm[allenai]
119
125
  crfm-helm[amazon]
120
126
  crfm-helm[anthropic]
127
+ crfm-helm[cohere]
121
128
  crfm-helm[google]
122
129
  crfm-helm[mistral]
123
130
  crfm-helm[openai]
131
+ crfm-helm[reka]
132
+ crfm-helm[together]
124
133
  crfm-helm[tsinghua]
125
134
  crfm-helm[yandex]
135
+ crfm-helm[openvino]
136
+ reka =
137
+ reka-api~=2.0.0
126
138
  vlm =
127
139
  crfm-helm[openai]
128
140
 
@@ -136,8 +148,12 @@ vlm =
136
148
  scipy~=1.10
137
149
  torchvision>=0.14.1,<3.0.0
138
150
 
151
+ crfm-helm[reka]
152
+
139
153
  crfm-helm[images]
140
154
  crfm-helm[image2structure]
155
+
156
+ pycocoevalcap~=1.2
141
157
  image2structure =
142
158
  crfm-helm[images]
143
159
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: crfm-helm
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Benchmark for language models
5
5
  Home-page: https://github.com/stanford-crfm/helm
6
6
  Author: Stanford CRFM
@@ -25,7 +25,7 @@ Requires-Dist: tqdm~=4.64
25
25
  Requires-Dist: zstandard~=0.18.0
26
26
  Requires-Dist: sqlitedict~=1.7
27
27
  Requires-Dist: bottle~=0.12.23
28
- Requires-Dist: datasets~=2.15
28
+ Requires-Dist: datasets~=2.17
29
29
  Requires-Dist: pyarrow>=11.0.0
30
30
  Requires-Dist: pyarrow-hotfix~=0.6
31
31
  Requires-Dist: nltk~=3.7
@@ -34,7 +34,7 @@ Requires-Dist: rouge-score~=0.1.2
34
34
  Requires-Dist: scipy~=1.10
35
35
  Requires-Dist: uncertainty-calibration~=0.1.4
36
36
  Requires-Dist: scikit-learn~=1.1
37
- Requires-Dist: transformers~=4.37
37
+ Requires-Dist: transformers~=4.40
38
38
  Requires-Dist: torch<3.0.0,>=1.13.1
39
39
  Requires-Dist: torchvision<3.0.0,>=0.14.1
40
40
  Requires-Dist: google-api-python-client~=2.64
@@ -77,6 +77,8 @@ Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
77
77
  Provides-Extra: aleph-alpha
78
78
  Requires-Dist: aleph-alpha-client~=2.14.0; extra == "aleph-alpha"
79
79
  Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
80
+ Provides-Extra: openvino
81
+ Requires-Dist: optimum[openvino]~=1.19; extra == "openvino"
80
82
  Provides-Extra: allenai
81
83
  Requires-Dist: ai2-olmo~=0.2; extra == "allenai"
82
84
  Provides-Extra: amazon
@@ -86,14 +88,18 @@ Requires-Dist: botocore~=1.31.57; extra == "amazon"
86
88
  Provides-Extra: anthropic
87
89
  Requires-Dist: anthropic~=0.17; extra == "anthropic"
88
90
  Requires-Dist: websocket-client~=1.3.2; extra == "anthropic"
91
+ Provides-Extra: cohere
92
+ Requires-Dist: cohere~=5.3; extra == "cohere"
89
93
  Provides-Extra: mistral
90
94
  Requires-Dist: mistralai~=0.0.11; extra == "mistral"
91
95
  Provides-Extra: openai
92
96
  Requires-Dist: openai~=1.0; extra == "openai"
93
- Requires-Dist: tiktoken~=0.3.3; extra == "openai"
97
+ Requires-Dist: tiktoken~=0.7; extra == "openai"
94
98
  Requires-Dist: pydantic~=2.0; extra == "openai"
95
99
  Provides-Extra: google
96
- Requires-Dist: google-cloud-aiplatform~=1.44; extra == "google"
100
+ Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
101
+ Provides-Extra: together
102
+ Requires-Dist: together~=1.1; extra == "together"
97
103
  Provides-Extra: tsinghua
98
104
  Requires-Dist: icetk~=0.0.4; extra == "tsinghua"
99
105
  Provides-Extra: yandex
@@ -103,11 +109,17 @@ Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
103
109
  Requires-Dist: crfm-helm[allenai]; extra == "models"
104
110
  Requires-Dist: crfm-helm[amazon]; extra == "models"
105
111
  Requires-Dist: crfm-helm[anthropic]; extra == "models"
112
+ Requires-Dist: crfm-helm[cohere]; extra == "models"
106
113
  Requires-Dist: crfm-helm[google]; extra == "models"
107
114
  Requires-Dist: crfm-helm[mistral]; extra == "models"
108
115
  Requires-Dist: crfm-helm[openai]; extra == "models"
116
+ Requires-Dist: crfm-helm[reka]; extra == "models"
117
+ Requires-Dist: crfm-helm[together]; extra == "models"
109
118
  Requires-Dist: crfm-helm[tsinghua]; extra == "models"
110
119
  Requires-Dist: crfm-helm[yandex]; extra == "models"
120
+ Requires-Dist: crfm-helm[openvino]; extra == "models"
121
+ Provides-Extra: reka
122
+ Requires-Dist: reka-api~=2.0.0; extra == "reka"
111
123
  Provides-Extra: vlm
112
124
  Requires-Dist: crfm-helm[openai]; extra == "vlm"
113
125
  Requires-Dist: einops~=0.7.0; extra == "vlm"
@@ -117,8 +129,10 @@ Requires-Dist: torch~=2.1.2; extra == "vlm"
117
129
  Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
118
130
  Requires-Dist: scipy~=1.10; extra == "vlm"
119
131
  Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
132
+ Requires-Dist: crfm-helm[reka]; extra == "vlm"
120
133
  Requires-Dist: crfm-helm[images]; extra == "vlm"
121
134
  Requires-Dist: crfm-helm[image2structure]; extra == "vlm"
135
+ Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
122
136
  Provides-Extra: image2structure
123
137
  Requires-Dist: crfm-helm[images]; extra == "image2structure"
124
138
  Requires-Dist: latex~=0.7.0; extra == "image2structure"
@@ -32,7 +32,6 @@ src/helm/benchmark/server.py
32
32
  src/helm/benchmark/slurm_jobs.py
33
33
  src/helm/benchmark/slurm_runner.py
34
34
  src/helm/benchmark/test_data_preprocessor.py
35
- src/helm/benchmark/test_model_deployment_definition.py
36
35
  src/helm/benchmark/test_run_expander.py
37
36
  src/helm/benchmark/tokenizer_config_registry.py
38
37
  src/helm/benchmark/adaptation/__init__.py
@@ -63,8 +62,11 @@ src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimod
63
62
  src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py
64
63
  src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py
65
64
  src/helm/benchmark/annotation/__init__.py
65
+ src/helm/benchmark/annotation/air_bench_annotator.py
66
66
  src/helm/benchmark/annotation/annotator.py
67
67
  src/helm/benchmark/annotation/annotator_factory.py
68
+ src/helm/benchmark/annotation/live_qa_annotator.py
69
+ src/helm/benchmark/annotation/medication_qa_annotator.py
68
70
  src/helm/benchmark/annotation/test_annotator_factory.py
69
71
  src/helm/benchmark/annotation/test_dummy_annotator.py
70
72
  src/helm/benchmark/annotation/image2structure/__init__.py
@@ -102,6 +104,7 @@ src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json
102
104
  src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json
103
105
  src/helm/benchmark/efficiency_data/training_efficiency.json
104
106
  src/helm/benchmark/metrics/__init__.py
107
+ src/helm/benchmark/metrics/air_bench_metrics.py
105
108
  src/helm/benchmark/metrics/basic_metrics.py
106
109
  src/helm/benchmark/metrics/bbq_metrics.py
107
110
  src/helm/benchmark/metrics/bias_metrics.py
@@ -123,16 +126,23 @@ src/helm/benchmark/metrics/dry_run_metrics.py
123
126
  src/helm/benchmark/metrics/efficiency_metrics.py
124
127
  src/helm/benchmark/metrics/evaluate_instances_metric.py
125
128
  src/helm/benchmark/metrics/evaluate_reference_metrics.py
129
+ src/helm/benchmark/metrics/fin_qa_metrics.py
130
+ src/helm/benchmark/metrics/fin_qa_metrics_helper.py
131
+ src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py
126
132
  src/helm/benchmark/metrics/instruction_following_critique_metrics.py
127
133
  src/helm/benchmark/metrics/language_modeling_metrics.py
134
+ src/helm/benchmark/metrics/live_qa_metrics.py
128
135
  src/helm/benchmark/metrics/machine_translation_metrics.py
136
+ src/helm/benchmark/metrics/medication_qa_metrics.py
129
137
  src/helm/benchmark/metrics/metric.py
130
138
  src/helm/benchmark/metrics/metric_name.py
131
139
  src/helm/benchmark/metrics/metric_service.py
132
140
  src/helm/benchmark/metrics/numeracy_metrics.py
133
141
  src/helm/benchmark/metrics/paraphrase_generation_metrics.py
142
+ src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py
134
143
  src/helm/benchmark/metrics/ranking_metrics.py
135
144
  src/helm/benchmark/metrics/reference_metric.py
145
+ src/helm/benchmark/metrics/reka_vibe_critique_metrics.py
136
146
  src/helm/benchmark/metrics/statistic.py
137
147
  src/helm/benchmark/metrics/summarization_critique_metrics.py
138
148
  src/helm/benchmark/metrics/summarization_metrics.py
@@ -208,11 +218,15 @@ src/helm/benchmark/presentation/table.py
208
218
  src/helm/benchmark/presentation/test_contamination.py
209
219
  src/helm/benchmark/presentation/test_create_plots.py
210
220
  src/helm/benchmark/presentation/test_run_entry.py
221
+ src/helm/benchmark/presentation/test_schema.py
211
222
  src/helm/benchmark/presentation/test_summarize.py
212
223
  src/helm/benchmark/run_specs/__init__.py
224
+ src/helm/benchmark/run_specs/air_bench_run_specs.py
213
225
  src/helm/benchmark/run_specs/classic_run_specs.py
214
226
  src/helm/benchmark/run_specs/cleva_run_specs.py
215
227
  src/helm/benchmark/run_specs/decodingtrust_run_specs.py
228
+ src/helm/benchmark/run_specs/experimental_run_specs.py
229
+ src/helm/benchmark/run_specs/finance_run_specs.py
216
230
  src/helm/benchmark/run_specs/heim_run_specs.py
217
231
  src/helm/benchmark/run_specs/instruction_following_run_specs.py
218
232
  src/helm/benchmark/run_specs/lite_run_specs.py
@@ -220,6 +234,7 @@ src/helm/benchmark/run_specs/simple_run_specs.py
220
234
  src/helm/benchmark/run_specs/unitxt_run_specs.py
221
235
  src/helm/benchmark/run_specs/vlm_run_specs.py
222
236
  src/helm/benchmark/scenarios/__init__.py
237
+ src/helm/benchmark/scenarios/air_bench_scenario.py
223
238
  src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py
224
239
  src/helm/benchmark/scenarios/babi_qa_scenario.py
225
240
  src/helm/benchmark/scenarios/bbq_scenario.py
@@ -227,6 +242,7 @@ src/helm/benchmark/scenarios/big_bench_scenario.py
227
242
  src/helm/benchmark/scenarios/blimp_scenario.py
228
243
  src/helm/benchmark/scenarios/bold_scenario.py
229
244
  src/helm/benchmark/scenarios/boolq_scenario.py
245
+ src/helm/benchmark/scenarios/ci_mcqa_scenario.py
230
246
  src/helm/benchmark/scenarios/civil_comments_scenario.py
231
247
  src/helm/benchmark/scenarios/cleva_scenario.py
232
248
  src/helm/benchmark/scenarios/code_scenario.py
@@ -250,6 +266,7 @@ src/helm/benchmark/scenarios/dyck_language_scenario.py
250
266
  src/helm/benchmark/scenarios/entity_data_imputation_scenario.py
251
267
  src/helm/benchmark/scenarios/entity_matching_scenario.py
252
268
  src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py
269
+ src/helm/benchmark/scenarios/fin_qa_scenario.py
253
270
  src/helm/benchmark/scenarios/grammar.py
254
271
  src/helm/benchmark/scenarios/grammar_scenario.py
255
272
  src/helm/benchmark/scenarios/gsm_scenario.py
@@ -293,6 +310,7 @@ src/helm/benchmark/scenarios/summarization_scenario.py
293
310
  src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py
294
311
  src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py
295
312
  src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py
313
+ src/helm/benchmark/scenarios/test_air_bench_scenario.py
296
314
  src/helm/benchmark/scenarios/test_grammar.py
297
315
  src/helm/benchmark/scenarios/test_math_scenario.py
298
316
  src/helm/benchmark/scenarios/test_scenario.py
@@ -327,16 +345,27 @@ src/helm/benchmark/scenarios/image_generation/relational_understanding_scenario.
327
345
  src/helm/benchmark/scenarios/image_generation/time_most_significant_historical_figures_scenario.py
328
346
  src/helm/benchmark/scenarios/image_generation/winoground_scenario.py
329
347
  src/helm/benchmark/scenarios/vision_language/__init__.py
348
+ src/helm/benchmark/scenarios/vision_language/a_okvqa_scenario.py
330
349
  src/helm/benchmark/scenarios/vision_language/bingo_scenario.py
350
+ src/helm/benchmark/scenarios/vision_language/crossmodal_3600_scenario.py
351
+ src/helm/benchmark/scenarios/vision_language/flickr30k_scenario.py
352
+ src/helm/benchmark/scenarios/vision_language/gqa_scenario.py
331
353
  src/helm/benchmark/scenarios/vision_language/hateful_memes_scenario.py
332
354
  src/helm/benchmark/scenarios/vision_language/heim_human_eval_scenario.py
355
+ src/helm/benchmark/scenarios/vision_language/math_vista_scenario.py
333
356
  src/helm/benchmark/scenarios/vision_language/mementos_scenario.py
357
+ src/helm/benchmark/scenarios/vision_language/mm_safety_bench_scenario.py
334
358
  src/helm/benchmark/scenarios/vision_language/mme_scenario.py
335
359
  src/helm/benchmark/scenarios/vision_language/mmmu_scenario.py
360
+ src/helm/benchmark/scenarios/vision_language/mscoco_captioning_scenario.py
361
+ src/helm/benchmark/scenarios/vision_language/mscoco_categorization_scenario.py
336
362
  src/helm/benchmark/scenarios/vision_language/multipanelvqa_scenario.py
363
+ src/helm/benchmark/scenarios/vision_language/originality_scenario.py
364
+ src/helm/benchmark/scenarios/vision_language/pairs_scenario.py
337
365
  src/helm/benchmark/scenarios/vision_language/pope_scenario.py
338
366
  src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py
339
367
  src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py
368
+ src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py
340
369
  src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py
341
370
  src/helm/benchmark/scenarios/vision_language/vqa_scenario.py
342
371
  src/helm/benchmark/scenarios/vision_language/image2structure/__init__.py
@@ -359,12 +388,19 @@ src/helm/benchmark/static/index.html
359
388
  src/helm/benchmark/static/info-icon.png
360
389
  src/helm/benchmark/static/json-urls.js
361
390
  src/helm/benchmark/static/plot-captions.js
391
+ src/helm/benchmark/static/schema_air_bench.yaml
362
392
  src/helm/benchmark/static/schema_classic.yaml
393
+ src/helm/benchmark/static/schema_finance.yaml
394
+ src/helm/benchmark/static/schema_image2structure.yaml
363
395
  src/helm/benchmark/static/schema_instruction_following.yaml
364
396
  src/helm/benchmark/static/schema_lite.yaml
397
+ src/helm/benchmark/static/schema_medical.yaml
365
398
  src/helm/benchmark/static/schema_mmlu.yaml
399
+ src/helm/benchmark/static/schema_tables.yaml
400
+ src/helm/benchmark/static/schema_thai.yaml
366
401
  src/helm/benchmark/static/schema_unitxt.yaml
367
- src/helm/benchmark/static/schema_vlm.yaml
402
+ src/helm/benchmark/static/schema_vhelm.yaml
403
+ src/helm/benchmark/static/schema_vhelm_lite.yaml
368
404
  src/helm/benchmark/static/utils.js
369
405
  src/helm/benchmark/static/images/crfm-logo.png
370
406
  src/helm/benchmark/static/images/helm-logo-simple.png
@@ -389,6 +425,7 @@ src/helm/benchmark/static_build/config.js
389
425
  src/helm/benchmark/static_build/index.html
390
426
  src/helm/benchmark/static_build/assets/01-694cb9b7.png
391
427
  src/helm/benchmark/static_build/assets/ai21-0eb91ec3.png
428
+ src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png
392
429
  src/helm/benchmark/static_build/assets/aleph-alpha-7ce10034.png
393
430
  src/helm/benchmark/static_build/assets/anthropic-70d8bc39.png
394
431
  src/helm/benchmark/static_build/assets/bigscience-7f0400c0.png
@@ -399,13 +436,15 @@ src/helm/benchmark/static_build/assets/google-06d997ad.png
399
436
  src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png
400
437
  src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png
401
438
  src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png
402
- src/helm/benchmark/static_build/assets/index-5088afcb.css
403
- src/helm/benchmark/static_build/assets/index-d839df55.js
439
+ src/helm/benchmark/static_build/assets/index-30dbceba.js
440
+ src/helm/benchmark/static_build/assets/index-66b02d40.css
404
441
  src/helm/benchmark/static_build/assets/meta-5580e9f1.png
405
442
  src/helm/benchmark/static_build/assets/microsoft-f5ee5016.png
406
443
  src/helm/benchmark/static_build/assets/mistral-18e1be23.png
407
444
  src/helm/benchmark/static_build/assets/nvidia-86fa75c1.png
408
445
  src/helm/benchmark/static_build/assets/openai-3f8653e4.png
446
+ src/helm/benchmark/static_build/assets/overview-74aea3d8.png
447
+ src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png
409
448
  src/helm/benchmark/static_build/assets/react-d4a0b69b.js
410
449
  src/helm/benchmark/static_build/assets/recharts-6d337683.js
411
450
  src/helm/benchmark/static_build/assets/tii-24de195c.png
@@ -478,6 +517,7 @@ src/helm/clients/open_lm_client.py
478
517
  src/helm/clients/openai_client.py
479
518
  src/helm/clients/palmyra_client.py
480
519
  src/helm/clients/perspective_api_client.py
520
+ src/helm/clients/reka_client.py
481
521
  src/helm/clients/simple_client.py
482
522
  src/helm/clients/test_auto_client.py
483
523
  src/helm/clients/test_client.py
@@ -488,6 +528,7 @@ src/helm/clients/together_client.py
488
528
  src/helm/clients/toxicity_classifier_client.py
489
529
  src/helm/clients/vertexai_client.py
490
530
  src/helm/clients/vllm_client.py
531
+ src/helm/clients/yi_client.py
491
532
  src/helm/clients/clip_scorers/__init__.py
492
533
  src/helm/clients/clip_scorers/base_clip_scorer.py
493
534
  src/helm/clients/clip_scorers/clip_scorer.py
@@ -545,9 +586,12 @@ src/helm/clients/image_generation/mindalle/utils/config.py
545
586
  src/helm/clients/image_generation/mindalle/utils/sampling.py
546
587
  src/helm/clients/image_generation/mindalle/utils/utils.py
547
588
  src/helm/clients/vision_language/__init__.py
589
+ src/helm/clients/vision_language/huggingface_vision2seq_client.py
548
590
  src/helm/clients/vision_language/huggingface_vlm_client.py
549
591
  src/helm/clients/vision_language/idefics_client.py
550
592
  src/helm/clients/vision_language/open_flamingo_client.py
593
+ src/helm/clients/vision_language/paligemma_client.py
594
+ src/helm/clients/vision_language/palmyra_vision_client.py
551
595
  src/helm/clients/vision_language/qwen_vlm_client.py
552
596
  src/helm/clients/vision_language/open_flamingo/__init__.py
553
597
  src/helm/clients/vision_language/open_flamingo/src/__init__.py
@@ -635,6 +679,7 @@ src/helm/tokenizers/ice_tokenizer.py
635
679
  src/helm/tokenizers/lit_gpt_tokenizer.py
636
680
  src/helm/tokenizers/simple_tokenizer.py
637
681
  src/helm/tokenizers/test_anthropic_tokenizer.py
682
+ src/helm/tokenizers/test_cohere_tokenizer.py
638
683
  src/helm/tokenizers/test_huggingface_tokenizer.py
639
684
  src/helm/tokenizers/test_ice_tokenizer.py
640
685
  src/helm/tokenizers/test_simple_tokenizer.py
@@ -10,7 +10,7 @@ tqdm~=4.64
10
10
  zstandard~=0.18.0
11
11
  sqlitedict~=1.7
12
12
  bottle~=0.12.23
13
- datasets~=2.15
13
+ datasets~=2.17
14
14
  pyarrow>=11.0.0
15
15
  pyarrow-hotfix~=0.6
16
16
  nltk~=3.7
@@ -19,7 +19,7 @@ rouge-score~=0.1.2
19
19
  scipy~=1.10
20
20
  uncertainty-calibration~=0.1.4
21
21
  scikit-learn~=1.1
22
- transformers~=4.37
22
+ transformers~=4.40
23
23
  torch<3.0.0,>=1.13.1
24
24
  torchvision<3.0.0,>=0.14.1
25
25
  google-api-python-client~=2.64
@@ -62,6 +62,9 @@ jieba==0.42.1
62
62
  opencc==1.1.6
63
63
  langdetect==1.0.9
64
64
 
65
+ [cohere]
66
+ cohere~=5.3
67
+
65
68
  [decodingtrust]
66
69
  fairlearn~=0.9.0
67
70
 
@@ -73,7 +76,7 @@ mypy==1.5.1
73
76
  flake8==5.0.4
74
77
 
75
78
  [google]
76
- google-cloud-aiplatform~=1.44
79
+ google-cloud-aiplatform~=1.48
77
80
 
78
81
  [heim]
79
82
  gdown~=4.4.0
@@ -134,20 +137,27 @@ crfm-helm[aleph-alpha]
134
137
  crfm-helm[allenai]
135
138
  crfm-helm[amazon]
136
139
  crfm-helm[anthropic]
140
+ crfm-helm[cohere]
137
141
  crfm-helm[google]
138
142
  crfm-helm[mistral]
139
143
  crfm-helm[openai]
144
+ crfm-helm[reka]
145
+ crfm-helm[together]
140
146
  crfm-helm[tsinghua]
141
147
  crfm-helm[yandex]
148
+ crfm-helm[openvino]
142
149
 
143
150
  [mongo]
144
151
  pymongo~=4.2
145
152
 
146
153
  [openai]
147
154
  openai~=1.0
148
- tiktoken~=0.3.3
155
+ tiktoken~=0.7
149
156
  pydantic~=2.0
150
157
 
158
+ [openvino]
159
+ optimum[openvino]~=1.19
160
+
151
161
  [plots]
152
162
  colorcet~=3.0.1
153
163
  matplotlib~=3.6.0
@@ -156,6 +166,9 @@ seaborn~=0.11.0
156
166
  [proxy-server]
157
167
  gunicorn~=20.1.0
158
168
 
169
+ [reka]
170
+ reka-api~=2.0.0
171
+
159
172
  [scenarios]
160
173
  gdown~=4.4.0
161
174
  sympy~=1.11.1
@@ -167,6 +180,9 @@ simple-slurm~=0.2.6
167
180
  [summarization]
168
181
  summ-eval~=0.892
169
182
 
183
+ [together]
184
+ together~=1.1
185
+
170
186
  [tsinghua]
171
187
  icetk~=0.0.4
172
188
 
@@ -182,8 +198,10 @@ torch~=2.1.2
182
198
  transformers_stream_generator~=0.0.4
183
199
  scipy~=1.10
184
200
  torchvision<3.0.0,>=0.14.1
201
+ crfm-helm[reka]
185
202
  crfm-helm[images]
186
203
  crfm-helm[image2structure]
204
+ pycocoevalcap~=1.2
187
205
 
188
206
  [yandex]
189
207
  sentencepiece~=0.1.97