crfm-helm 0.5.8__tar.gz → 0.5.9__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.

Potentially problematic release.


This version of crfm-helm might be problematic. Click here for more details.

Files changed (1020) hide show
  1. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/PKG-INFO +3 -1
  2. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/README.md +1 -0
  3. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/pyproject.toml +2 -1
  4. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/PKG-INFO +3 -1
  5. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/SOURCES.txt +20 -18
  6. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/requires.txt +1 -0
  7. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapter_spec.py +5 -0
  8. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/bbq_metrics.py +12 -0
  9. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/evaluate_reference_metrics.py +12 -0
  10. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/safety_metrics.py +13 -1
  11. crfm_helm-0.5.9/src/helm/benchmark/metrics/ultra_suite_asr_classification_metrics.py +52 -0
  12. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/run_display.py +13 -3
  13. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/run_entry.py +2 -2
  14. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run.py +1 -1
  15. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/arabic_run_specs.py +6 -0
  16. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/medhelm_run_specs.py +2 -2
  17. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/speech_disorder_audio_run_specs.py +6 -2
  18. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/anthropic_red_team_scenario.py +12 -1
  19. crfm_helm-0.5.9/src/helm/benchmark/scenarios/audio_language/ultra_suite_asr_classification_scenario.py +74 -0
  20. crfm_helm-0.5.9/src/helm/benchmark/scenarios/audio_language/ultra_suite_asr_transcription_scenario.py +70 -0
  21. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/ultra_suite_classification_scenario.py +22 -61
  22. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/ultra_suite_disorder_breakdown_scenario.py +21 -29
  23. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/ultra_suite_disorder_symptoms_scenario.py +21 -60
  24. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/banking77_scenario.py +21 -0
  25. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/bbq_scenario.py +1 -1
  26. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/bird_sql_scenario.py +18 -0
  27. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/commonsense_scenario.py +7 -1
  28. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/czech_bank_qa_scenario.py +18 -0
  29. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/fin_qa_scenario.py +20 -0
  30. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/financebench_scenario.py +21 -0
  31. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/gsm_scenario.py +9 -3
  32. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/harm_bench_gcg_transfer_scenario.py +12 -1
  33. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/harm_bench_scenario.py +12 -1
  34. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/infinite_bench_en_mc_scenario.py +21 -0
  35. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/infinite_bench_en_sum_scenario.py +19 -0
  36. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/legalbench_scenario.py +6 -7
  37. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/math_scenario.py +11 -4
  38. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/med_qa_scenario.py +7 -1
  39. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medi_qa_scenario.py +2 -2
  40. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mmlu_scenario.py +8 -2
  41. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/narrativeqa_scenario.py +3 -4
  42. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/openai_mrcr_scenario.py +15 -0
  43. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ruler_qa_scenarios.py +40 -0
  44. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/simple_safety_tests_scenario.py +12 -1
  45. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/spider_scenario.py +18 -0
  46. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/thai_exam_scenario.py +95 -0
  47. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/wmt_14_scenario.py +9 -2
  48. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_long_context.yaml +12 -31
  49. crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/audio-table-Dn5NMMeJ.png +0 -0
  50. crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/index-qOFpOyHb.js +10 -0
  51. crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/react-BteFIppM.js +85 -0
  52. crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/recharts-DxuQtTOs.js +97 -0
  53. crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/tremor-DR4fE7ko.js +10 -0
  54. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static_build/index.html +5 -6
  55. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/ai21_client.py +2 -0
  56. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/aleph_alpha_client.py +2 -0
  57. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/anthropic_client.py +7 -1
  58. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/diva_llama_client.py +2 -0
  59. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni_client.py +2 -1
  60. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen2_5_omni_client.py +2 -1
  61. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen2_audiolm_client.py +2 -1
  62. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_audiolm_client.py +2 -1
  63. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/bedrock_client.py +2 -0
  64. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/cohere_client.py +3 -0
  65. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/google_client.py +2 -0
  66. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/http_model_client.py +2 -0
  67. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/huggingface_client.py +2 -1
  68. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/ibm_client.py +3 -1
  69. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/adobe_vision_client.py +2 -0
  70. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/aleph_alpha_image_generation_client.py +2 -0
  71. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2_client.py +2 -1
  72. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle2_client.py +2 -0
  73. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini_client.py +2 -1
  74. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/deep_floyd_client.py +2 -0
  75. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/huggingface_diffusers_client.py +2 -1
  76. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/lexica_client.py +2 -0
  77. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle_client.py +2 -1
  78. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/together_image_generation_client.py +2 -0
  79. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/megatron_client.py +2 -0
  80. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/mistral_client.py +2 -0
  81. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/moderation_api_client.py +2 -0
  82. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/openai_client.py +5 -1
  83. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/palmyra_client.py +2 -1
  84. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/reka_client.py +2 -1
  85. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/stanfordhealthcare_azure_openai_client.py +2 -2
  86. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/stanfordhealthcare_http_model_client.py +2 -0
  87. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/together_client.py +4 -0
  88. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vertexai_client.py +4 -0
  89. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/huggingface_vision2seq_client.py +2 -1
  90. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/huggingface_vlm_client.py +2 -0
  91. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/idefics_client.py +2 -1
  92. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo_client.py +2 -1
  93. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/paligemma_client.py +2 -1
  94. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/palmyra_vision_client.py +2 -0
  95. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/qwen2_vlm_client.py +2 -1
  96. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/qwen_vlm_client.py +2 -1
  97. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/writer_client.py +2 -0
  98. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/hierarchical_logger.py +20 -0
  99. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/optional_dependencies.py +1 -1
  100. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/test_general.py +4 -0
  101. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/config/model_deployments.yaml +225 -0
  102. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/config/model_metadata.yaml +232 -7
  103. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/config/tokenizer_configs.yaml +74 -4
  104. crfm_helm-0.5.8/src/helm/benchmark/scenarios/audio_language/ultra_suite_asr_classification_scenario.py +0 -104
  105. crfm_helm-0.5.8/src/helm/benchmark/scenarios/audio_language/ultra_suite_asr_transcription_scenario.py +0 -99
  106. crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/index-671a5e06.js +0 -10
  107. crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/react-f82877fd.js +0 -85
  108. crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/recharts-4037aff0.js +0 -97
  109. crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/tremor-38a10867.js +0 -10
  110. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/LICENSE +0 -0
  111. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/MANIFEST.in +0 -0
  112. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/setup.cfg +0 -0
  113. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/dependency_links.txt +0 -0
  114. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/entry_points.txt +0 -0
  115. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/not-zip-safe +0 -0
  116. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/crfm_helm.egg-info/top_level.txt +0 -0
  117. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/__init__.py +0 -0
  118. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/__init__.py +0 -0
  119. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/__init__.py +0 -0
  120. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/__init__.py +0 -0
  121. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/adapter.py +0 -0
  122. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/adapter_factory.py +0 -0
  123. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/binary_ranking_adapter.py +0 -0
  124. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/chat_adapter.py +0 -0
  125. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/ehr_instruction_adapter.py +0 -0
  126. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/generation_adapter.py +0 -0
  127. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/in_context_learning_adapter.py +0 -0
  128. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/language_modeling_adapter.py +0 -0
  129. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/__init__.py +0 -0
  130. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/generation_multimodal_adapter.py +0 -0
  131. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/in_context_learning_multimodal_adapter.py +0 -0
  132. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/multimodal_prompt.py +0 -0
  133. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimodal_adapter.py +0 -0
  134. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py +0 -0
  135. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py +0 -0
  136. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multiple_choice_calibrated_adapter.py +0 -0
  137. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_adapter.py +0 -0
  138. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_chain_of_thought_adapter.py +0 -0
  139. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/multiple_choice_separate_adapter.py +0 -0
  140. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/test_adapter.py +0 -0
  141. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/test_generation_adapter.py +0 -0
  142. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/test_language_modeling_adapter.py +0 -0
  143. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/adapters/test_multiple_choice_joint_adapter.py +0 -0
  144. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/common_adapter_specs.py +0 -0
  145. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/prompt.py +0 -0
  146. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/request_state.py +0 -0
  147. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/adaptation/scenario_state.py +0 -0
  148. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/__init__.py +0 -0
  149. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/aci_bench_annotator.py +0 -0
  150. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/air_bench_annotator.py +0 -0
  151. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/alrage_annotator.py +0 -0
  152. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/annotator.py +0 -0
  153. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/annotator_factory.py +0 -0
  154. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/anthropic_red_team_annotator.py +0 -0
  155. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/autobencher_capabilities_annotator.py +0 -0
  156. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/autobencher_safety_annotator.py +0 -0
  157. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/bigcodebench_annotator.py +0 -0
  158. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/bird_sql_annotator.py +0 -0
  159. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/call_center_annotator.py +0 -0
  160. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/chw_care_plan_annotator.py +0 -0
  161. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/czech_bank_qa_annotator.py +0 -0
  162. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/dischargeme_annotator.py +0 -0
  163. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/ehr_sql_annotator.py +0 -0
  164. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/financebench_annotator.py +0 -0
  165. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/harm_bench_annotator.py +0 -0
  166. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/helpdesk_call_summarization_annotator.py +0 -0
  167. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/image2struct/__init__.py +0 -0
  168. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/image2struct/image_compiler_annotator.py +0 -0
  169. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/image2struct/latex_compiler_annotator.py +0 -0
  170. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/image2struct/lilypond_compiler_annotator.py +0 -0
  171. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/image2struct/webpage_compiler_annotator.py +0 -0
  172. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/live_qa_annotator.py +0 -0
  173. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/med_dialog_annotator.py +0 -0
  174. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/medalign_annotator.py +0 -0
  175. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/medi_qa_annotator.py +0 -0
  176. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/medication_qa_annotator.py +0 -0
  177. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/mental_health_annotator.py +0 -0
  178. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/mimic_bhc_annotator.py +0 -0
  179. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/mimic_rrs_annotator.py +0 -0
  180. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/model_as_judge.py +0 -0
  181. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/mtsamples_procedures_annotator.py +0 -0
  182. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/mtsamples_replicate_annotator.py +0 -0
  183. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/omni_math/gpt_evaluation_template.txt +0 -0
  184. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/omni_math/gpt_evaluation_zero_shot_template.txt +0 -0
  185. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/omni_math_annotator.py +0 -0
  186. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/simple_safety_tests_annotator.py +0 -0
  187. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/spider_annotator.py +0 -0
  188. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/starr_patient_instructions_annotator.py +0 -0
  189. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/test_annotator_factory.py +0 -0
  190. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/test_dummy_annotator.py +0 -0
  191. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/wildbench/eval_template.pairwise.v2.md +0 -0
  192. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/wildbench/eval_template.score.v2.md +0 -0
  193. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/wildbench_annotator.py +0 -0
  194. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation/xstest_annotator.py +0 -0
  195. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/annotation_executor.py +0 -0
  196. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/__init__.py +0 -0
  197. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/cleva_perturbation.py +0 -0
  198. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/contraction_expansion_perturbation.py +0 -0
  199. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/contrast_sets_perturbation.py +0 -0
  200. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/correct_to_misspelling.json +0 -0
  201. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/data_augmenter.py +0 -0
  202. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/dialect_perturbation.py +0 -0
  203. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/extra_space_perturbation.py +0 -0
  204. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/filler_words_perturbation.py +0 -0
  205. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/gender_perturbation.py +0 -0
  206. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/lowercase_perturbation.py +0 -0
  207. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/mild_mix_perturbation.py +0 -0
  208. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/misspelling_perturbation.py +0 -0
  209. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/person_name_perturbation.py +0 -0
  210. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/perturbation.py +0 -0
  211. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/perturbation_description.py +0 -0
  212. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/space_perturbation.py +0 -0
  213. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/suffix_perturbation.py +0 -0
  214. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/synonym_perturbation.py +0 -0
  215. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/test_perturbation.py +0 -0
  216. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/translate_perturbation.py +0 -0
  217. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/augmentations/typos_perturbation.py +0 -0
  218. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/config_registry.py +0 -0
  219. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/data_preprocessor.py +0 -0
  220. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json +0 -0
  221. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json +0 -0
  222. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/efficiency_data/training_efficiency.json +0 -0
  223. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/executor.py +0 -0
  224. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/huggingface_registration.py +0 -0
  225. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/__init__.py +0 -0
  226. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/air_bench_metrics.py +0 -0
  227. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/alrage_metric.py +0 -0
  228. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/annotation_metrics.py +0 -0
  229. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/basic_metrics.py +0 -0
  230. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/bias_metrics.py +0 -0
  231. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/bias_word_lists.py +0 -0
  232. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/bigcodebench_metrics.py +0 -0
  233. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/bird_sql_metrics.py +0 -0
  234. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/classification_metrics.py +0 -0
  235. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/cleva_accuracy_metrics.py +0 -0
  236. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/cleva_harms_metrics.py +0 -0
  237. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/cleva_metrics_helper.py +0 -0
  238. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/code_metrics.py +0 -0
  239. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/code_metrics_helper.py +0 -0
  240. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/codeinsights_code_efficiency_metrics.py +0 -0
  241. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/codeinsights_code_evaluation_metrics.py +0 -0
  242. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/codeinsights_correct_code_metrics.py +0 -0
  243. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/codeinsights_edge_case_metrics.py +0 -0
  244. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/codeinsights_metric_specs.py +0 -0
  245. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/comet_metric.py +0 -0
  246. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/common_metric_specs.py +0 -0
  247. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/conv_fin_qa_calc_metrics.py +0 -0
  248. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/copyright_metrics.py +0 -0
  249. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/czech_bank_qa_metrics.py +0 -0
  250. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/decodingtrust_fairness_metrics.py +0 -0
  251. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/decodingtrust_ood_knowledge_metrics.py +0 -0
  252. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/decodingtrust_privacy_metrics.py +0 -0
  253. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/decodingtrust_stereotype_bias_metrics.py +0 -0
  254. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/disinformation_metrics.py +0 -0
  255. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/dry_run_metrics.py +0 -0
  256. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/efficiency_metrics.py +0 -0
  257. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ehr_sql_metrics.py +0 -0
  258. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/evaluate_instances_metric.py +0 -0
  259. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/fin_qa_metrics.py +0 -0
  260. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/fin_qa_metrics_helper.py +0 -0
  261. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/gpqa_chain_of_thought_metric.py +0 -0
  262. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/gpt4_audio_critique_metrics.py +0 -0
  263. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/gpt4_audio_refusal_metrics.py +0 -0
  264. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py +0 -0
  265. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/helpdesk_call_summarization_metrics.py +0 -0
  266. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ifeval/__init__.py +0 -0
  267. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ifeval/instructions.py +0 -0
  268. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ifeval/instructions_registry.py +0 -0
  269. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ifeval/instructions_registry.pyi +0 -0
  270. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ifeval/instructions_util.py +0 -0
  271. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ifeval_metrics.py +0 -0
  272. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/__init__.py +0 -0
  273. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/aesthetics_metrics.py +0 -0
  274. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/aesthetics_scorer.py +0 -0
  275. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/clip_score_metrics.py +0 -0
  276. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/denoised_runtime_metric.py +0 -0
  277. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/detection_metrics.py +0 -0
  278. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/detectors/__init__.py +0 -0
  279. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/detectors/base_detector.py +0 -0
  280. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/detectors/vitdet.py +0 -0
  281. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/efficiency_metrics.py +0 -0
  282. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/fidelity_metrics.py +0 -0
  283. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/fractal_dimension/__init__.py +0 -0
  284. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/fractal_dimension/fractal_dimension_util.py +0 -0
  285. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/fractal_dimension/test_fractal_dimension_util.py +0 -0
  286. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/fractal_dimension_metric.py +0 -0
  287. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/gender_metrics.py +0 -0
  288. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/image_critique_metrics.py +0 -0
  289. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/lpips_metrics.py +0 -0
  290. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/multi_scale_ssim_metrics.py +0 -0
  291. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/nsfw_detector.py +0 -0
  292. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/nsfw_metrics.py +0 -0
  293. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/nudity_metrics.py +0 -0
  294. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/photorealism_critique_metrics.py +0 -0
  295. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/psnr_metrics.py +0 -0
  296. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/q16/__init__.py +0 -0
  297. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/q16/q16_toxicity_detector.py +0 -0
  298. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/q16/test_q16.py +0 -0
  299. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/q16_toxicity_metrics.py +0 -0
  300. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/skin_tone_metrics.py +0 -0
  301. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/uiqi_metrics.py +0 -0
  302. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/watermark/__init__.py +0 -0
  303. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/watermark/test_watermark_detector.py +0 -0
  304. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/watermark/watermark_detector.py +0 -0
  305. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/image_generation/watermark_metrics.py +0 -0
  306. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/instruction_following_critique_metrics.py +0 -0
  307. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/kpi_edgar_metrics.py +0 -0
  308. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/language_modeling_metrics.py +0 -0
  309. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/live_qa_metrics.py +0 -0
  310. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/llm_jury_metrics.py +0 -0
  311. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/lmkt_metric_specs.py +0 -0
  312. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/lmkt_metrics.py +0 -0
  313. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/machine_translation_metrics.py +0 -0
  314. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/medcalc_bench_metrics.py +0 -0
  315. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/medec_metrics.py +0 -0
  316. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/melt_bias_metric.py +0 -0
  317. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/melt_bias_word_lists.py +0 -0
  318. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/melt_metric_specs.py +0 -0
  319. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/melt_toxicity_metric.py +0 -0
  320. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/metric.py +0 -0
  321. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/metric_name.py +0 -0
  322. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/metric_service.py +0 -0
  323. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/mimiciv_billing_code_metrics.py +0 -0
  324. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/nltk_helper.py +0 -0
  325. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/omni_math_metrics.py +0 -0
  326. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/openai_mrcr_metrics.py +0 -0
  327. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/output_processing_metric.py +0 -0
  328. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/output_processors.py +0 -0
  329. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/paraphrase_generation_metrics.py +0 -0
  330. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py +0 -0
  331. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ranking_metrics.py +0 -0
  332. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/reference_metric.py +0 -0
  333. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/reka_vibe_critique_metrics.py +0 -0
  334. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/ruler_qa_metrics.py +0 -0
  335. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/seahelm_metrics.py +0 -0
  336. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/seahelm_metrics_specs.py +0 -0
  337. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/spider_metrics.py +0 -0
  338. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/statistic.py +0 -0
  339. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/summac/__init__.py +0 -0
  340. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/summac/model_summac.py +0 -0
  341. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/summac/utils_misc.py +0 -0
  342. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/summarization_critique_metrics.py +0 -0
  343. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/summarization_metrics.py +0 -0
  344. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/test_bias_metrics.py +0 -0
  345. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/test_classification_metrics.py +0 -0
  346. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/test_disinformation_metrics.py +0 -0
  347. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/test_evaluate_reference_metrics.py +0 -0
  348. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/test_metric.py +0 -0
  349. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/test_statistic.py +0 -0
  350. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/__init__.py +0 -0
  351. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/ai21_token_cost_estimator.py +0 -0
  352. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/auto_token_cost_estimator.py +0 -0
  353. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/cohere_token_cost_estimator.py +0 -0
  354. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/free_token_cost_estimator.py +0 -0
  355. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/gooseai_token_cost_estimator.py +0 -0
  356. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/openai_token_cost_estimator.py +0 -0
  357. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/test_ai21_token_cost_estimator.py +0 -0
  358. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/test_openai_token_cost_estimator.py +0 -0
  359. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/tokens/token_cost_estimator.py +0 -0
  360. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/toxicity_metrics.py +0 -0
  361. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/toxicity_utils.py +0 -0
  362. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/unitxt_metrics.py +0 -0
  363. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/vision_language/__init__.py +0 -0
  364. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/vision_language/emd_utils.py +0 -0
  365. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/vision_language/image_metrics.py +0 -0
  366. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/vision_language/image_utils.py +0 -0
  367. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/metrics/wildbench_metrics.py +0 -0
  368. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/model_deployment_registry.py +0 -0
  369. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/model_metadata_registry.py +0 -0
  370. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/multi_gpu_runner.py +0 -0
  371. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/__init__.py +0 -0
  372. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/contamination.py +0 -0
  373. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/create_plots.py +0 -0
  374. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/schema.py +0 -0
  375. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/summarize.py +0 -0
  376. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/table.py +0 -0
  377. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/taxonomy_info.py +0 -0
  378. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/test_contamination.py +0 -0
  379. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/test_create_plots.py +0 -0
  380. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/test_run_entry.py +0 -0
  381. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/test_schema.py +0 -0
  382. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/test_summarize.py +0 -0
  383. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/presentation/torr_robustness_summarizer.py +0 -0
  384. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/reeval_run.py +0 -0
  385. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/reeval_runner.py +0 -0
  386. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_expander.py +0 -0
  387. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_spec.py +0 -0
  388. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_spec_factory.py +0 -0
  389. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/__init__.py +0 -0
  390. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/air_bench_run_specs.py +0 -0
  391. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/audio_run_specs.py +0 -0
  392. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/bluex_run_specs.py +0 -0
  393. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/call_center_run_specs.py +0 -0
  394. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/capabilities_run_specs.py +0 -0
  395. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/classic_run_specs.py +0 -0
  396. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/cleva_run_specs.py +0 -0
  397. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/codeinsights_run_specs.py +0 -0
  398. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/decodingtrust_run_specs.py +0 -0
  399. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/enem_challenge_specs.py +0 -0
  400. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/enterprise_run_specs.py +0 -0
  401. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/experimental_run_specs.py +0 -0
  402. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/finance_run_specs.py +0 -0
  403. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/healthqa_br_run_specs.py +0 -0
  404. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/heim_run_specs.py +0 -0
  405. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/imdb_ptbr_run_specs.py +0 -0
  406. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/instruction_following_run_specs.py +0 -0
  407. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/lite_run_specs.py +0 -0
  408. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/lmkt_run_specs.py +0 -0
  409. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/long_context_run_specs.py +0 -0
  410. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/medhelm/__init__.py +0 -0
  411. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/medhelm/benchmark_config.py +0 -0
  412. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/melt_run_specs.py +0 -0
  413. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/mmlu_clinical_afr_run_specs.py +0 -0
  414. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/multilingual_run_specs.py +0 -0
  415. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/oab_exams_specs.py +0 -0
  416. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/safety_run_specs.py +0 -0
  417. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/seahelm_run_specs.py +0 -0
  418. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/simple_run_specs.py +0 -0
  419. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/sql_run_specs.py +0 -0
  420. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/tweetsentbr_run_specs.py +0 -0
  421. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/unitxt_run_specs.py +0 -0
  422. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/vlm_run_specs.py +0 -0
  423. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/run_specs/winogrande_afr_run_specs.py +0 -0
  424. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/runner.py +0 -0
  425. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/runner_config_registry.py +0 -0
  426. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/__init__.py +0 -0
  427. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/aci_bench_scenario.py +0 -0
  428. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/air_bench_scenario.py +0 -0
  429. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/alghafa_scenario.py +0 -0
  430. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/alrage_scenario.py +0 -0
  431. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py +0 -0
  432. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/arabic_exams_scenario.py +0 -0
  433. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/arabic_mmlu_scenario.py +0 -0
  434. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/aratrust_scenario.py +0 -0
  435. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/__init__.py +0 -0
  436. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/air_bench_chat_scenario.py +0 -0
  437. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/air_bench_foundation_scenario.py +0 -0
  438. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/ami_scenario.py +0 -0
  439. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/audio_mnist_scenario.py +0 -0
  440. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/audio_pairs_scenario.py +0 -0
  441. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/audiocaps_scenario.py +0 -0
  442. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/casual_conversations2_scenario.py +0 -0
  443. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/common_voice_15_scenario.py +0 -0
  444. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/corebench_scenario.py +0 -0
  445. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/covost2_scenario.py +0 -0
  446. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/fleurs_fairness_scenario.py +0 -0
  447. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/fleurs_scenario.py +0 -0
  448. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/iemocap_audio_scenario.py +0 -0
  449. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/librispeech_fairness_scenario.py +0 -0
  450. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/librispeech_scenario.py +0 -0
  451. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/meld_audio_scenario.py +0 -0
  452. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/multilingual_librispeech_scenario.py +0 -0
  453. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/mustard_scenario.py +0 -0
  454. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/mutox_scenario.py +0 -0
  455. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/parade_scenario.py +0 -0
  456. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/speech_robust_bench_scenario.py +0 -0
  457. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/vocal_sound_scenario.py +0 -0
  458. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/voice_jailbreak_attacks_scenario.py +0 -0
  459. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/audio_language/voxceleb2_scenario.py +0 -0
  460. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/autobencher_capabilities_scenario.py +0 -0
  461. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/autobencher_safety_scenario.py +0 -0
  462. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/babi_qa_scenario.py +0 -0
  463. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/best_chatgpt_prompts.yaml +0 -0
  464. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/big_bench_scenario.py +0 -0
  465. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/bigcodebench_scenario.py +0 -0
  466. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/bird_sql_scenario_helper.py +0 -0
  467. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/blimp_scenario.py +0 -0
  468. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/bluex_scenario.py +0 -0
  469. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/bold_scenario.py +0 -0
  470. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/boolq_scenario.py +0 -0
  471. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/call_center_scenario.py +0 -0
  472. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/casehold_scenario.py +0 -0
  473. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/chw_care_plan_scenario.py +0 -0
  474. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ci_mcqa_scenario.py +0 -0
  475. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/civil_comments_scenario.py +0 -0
  476. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/clear_scenario.py +0 -0
  477. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/cleva_scenario.py +0 -0
  478. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/code_scenario.py +0 -0
  479. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/code_scenario_apps_pinned_file_order.py +0 -0
  480. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/code_scenario_helper.py +0 -0
  481. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/codeinsights_code_efficiency_scenario.py +0 -0
  482. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/codeinsights_correct_code_scenario.py +0 -0
  483. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/codeinsights_edge_case_scenario.py +0 -0
  484. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/codeinsights_student_coding_scenario.py +0 -0
  485. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/codeinsights_student_mistake_scenario.py +0 -0
  486. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/compositional_instructions.yaml +0 -0
  487. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/conv_fin_qa_calc_scenario.py +0 -0
  488. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/copyright_scenario.py +0 -0
  489. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/covid_dialog_scenario.py +0 -0
  490. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/cti_to_mitre_scenario.py +0 -0
  491. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/custom_mcqa_scenario.py +0 -0
  492. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_adv_demonstration_scenario.py +0 -0
  493. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_adv_robustness_scenario.py +0 -0
  494. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_fairness_scenario.py +0 -0
  495. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_machine_ethics_scenario.py +0 -0
  496. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_ood_robustness_scenario.py +0 -0
  497. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_privacy_scenario.py +0 -0
  498. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_stereotype_bias_scenario.py +0 -0
  499. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/decodingtrust_toxicity_prompts_scenario.py +0 -0
  500. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/dialogue_scenarios.py +0 -0
  501. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/dischargeme_scenario.py +0 -0
  502. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/disinformation_scenario.py +0 -0
  503. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/dyck_language_scenario.py +0 -0
  504. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/echr_judgment_classification_scenario.py +0 -0
  505. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ehr_sql_scenario.py +0 -0
  506. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ehrshot_scenario.py +0 -0
  507. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/enem_challenge_scenario.py +0 -0
  508. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/entity_data_imputation_scenario.py +0 -0
  509. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/entity_matching_scenario.py +0 -0
  510. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py +0 -0
  511. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ewok_scenario.py +0 -0
  512. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/exams_multilingual_scenario.py +0 -0
  513. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/financial_phrasebank_scenario.py +0 -0
  514. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/gold_commodity_news_scenario.py +0 -0
  515. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/gpqa_scenario.py +0 -0
  516. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/grammar.py +0 -0
  517. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/grammar_scenario.py +0 -0
  518. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/headqa_scenario.py +0 -0
  519. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/healthqa_br_scenario.py +0 -0
  520. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/helpdesk_call_summarization_scenario.py +0 -0
  521. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ice_scenario.py +0 -0
  522. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ice_scenario_pinned_file_order.py +0 -0
  523. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ifeval_scenario.py +0 -0
  524. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/__init__.py +0 -0
  525. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/common_syntactic_processes_scenario.py +0 -0
  526. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/cub200_scenario.py +0 -0
  527. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/daily_dalle_scenario.py +0 -0
  528. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/demographic_stereotypes_scenario.py +0 -0
  529. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/detection_scenario.py +0 -0
  530. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/draw_bench_scenario.py +0 -0
  531. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/i2p_scenario.py +0 -0
  532. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/landing_page_scenario.py +0 -0
  533. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/logos_scenario.py +0 -0
  534. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/magazine_cover_scenario.py +0 -0
  535. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/mental_disorders_scenario.py +0 -0
  536. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/mscoco_scenario.py +0 -0
  537. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/paint_skills_scenario.py +0 -0
  538. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/parti_prompts_scenario.py +0 -0
  539. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/radiology_scenario.py +0 -0
  540. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/relational_understanding_scenario.py +0 -0
  541. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/time_most_significant_historical_figures_scenario.py +0 -0
  542. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/image_generation/winoground_scenario.py +0 -0
  543. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/imdb_ptbr_scenario.py +0 -0
  544. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/imdb_scenario.py +0 -0
  545. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/imdb_scenario_pinned_file_order.py +0 -0
  546. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/infinite_bench_en_qa_scenario.py +0 -0
  547. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/interactive_qa_mmlu_scenario.py +0 -0
  548. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/koala_scenario.py +0 -0
  549. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/kpi_edgar_scenario.py +0 -0
  550. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/legal_contract_summarization_scenario.py +0 -0
  551. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/legal_opinion_sentiment_classification_scenario.py +0 -0
  552. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/legal_summarization_scenario.py +0 -0
  553. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/legal_support_scenario.py +0 -0
  554. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/lex_glue_scenario.py +0 -0
  555. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/lextreme_scenario.py +0 -0
  556. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/live_qa_scenario.py +0 -0
  557. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/lm_entry_scenario.py +0 -0
  558. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/lmkt_scenarios.py +0 -0
  559. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/lsat_qa_scenario.py +0 -0
  560. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/madinah_qa_scenario.py +0 -0
  561. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mbzuai_human_translated_arabic_mmlu.py +0 -0
  562. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/me_q_sum_scenario.py +0 -0
  563. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/med_dialog_scenario.py +0 -0
  564. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/med_mcqa_scenario.py +0 -0
  565. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/med_paragraph_simplification_scenario.py +0 -0
  566. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medalign_scenario.py +0 -0
  567. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medalign_scenario_helper.py +0 -0
  568. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medbullets_scenario.py +0 -0
  569. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medcalc_bench_scenario.py +0 -0
  570. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medec_scenario.py +0 -0
  571. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medhallu_scenario.py +0 -0
  572. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medhelm/__init__.py +0 -0
  573. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medhelm/judges.yaml +0 -0
  574. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medhelm_configurable_scenario.py +0 -0
  575. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/medication_qa_scenario.py +0 -0
  576. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_ir_scenario.py +0 -0
  577. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_knowledge_scenario.py +0 -0
  578. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_lm_scenarios.py +0 -0
  579. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_scenarios.py +0 -0
  580. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_srn_scenario.py +0 -0
  581. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_synthetic_reasoning_scenario.py +0 -0
  582. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/melt_translation_scenario.py +0 -0
  583. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mental_health_scenario.py +0 -0
  584. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mimic_bhc_scenario.py +0 -0
  585. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mimic_rrs_scenario.py +0 -0
  586. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mimiciv_billing_code_scenario.py +0 -0
  587. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mmlu_clinical_afr_scenario.py +0 -0
  588. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mmlu_pro_scenario.py +0 -0
  589. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mmmlu_scenario.py +0 -0
  590. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/msmarco_scenario.py +0 -0
  591. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mtsamples_procedures_scenario.py +0 -0
  592. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/mtsamples_replicate_scenario.py +0 -0
  593. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/n2c2_ct_matching_scenario.py +0 -0
  594. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/natural_qa_scenario.py +0 -0
  595. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/newsqa_scenario.py +0 -0
  596. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/oab_exams_scenario.py +0 -0
  597. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/omni_math_scenario.py +0 -0
  598. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/open_assistant_scenario.py +0 -0
  599. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/opinions_qa_scenario.py +0 -0
  600. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/pubmed_qa_scenario.py +0 -0
  601. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/quac_scenario.py +0 -0
  602. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/race_based_med_scenario.py +0 -0
  603. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/raft_scenario.py +0 -0
  604. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/real_toxicity_prompts_scenario.py +0 -0
  605. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/ruler_qa_scenario_helper.py +0 -0
  606. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/scenario.py +0 -0
  607. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/seahelm_scenario.py +0 -0
  608. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/self_instruct_scenario.py +0 -0
  609. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_bmt_scenario.py +0 -0
  610. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_cdi_scenario.py +0 -0
  611. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_conf_scenario.py +0 -0
  612. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_ent_scenario.py +0 -0
  613. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_gip_scenario.py +0 -0
  614. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_privacy_scenario.py +0 -0
  615. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_proxy_scenario.py +0 -0
  616. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_ptbm_scenario.py +0 -0
  617. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_sei_scenario.py +0 -0
  618. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/shc_sequoia_scenario.py +0 -0
  619. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/simple_scenarios.py +0 -0
  620. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/situation_prompts.yaml +0 -0
  621. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/starr_patient_instructions_scenario.py +0 -0
  622. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/summarization_scenario.py +0 -0
  623. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/sumosum_scenario.py +0 -0
  624. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py +0 -0
  625. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py +0 -0
  626. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py +0 -0
  627. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_air_bench_scenario.py +0 -0
  628. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_alghafa_scenario.py +0 -0
  629. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_alrage_scenario.py +0 -0
  630. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_arabic_exams_scenario.py +0 -0
  631. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_aratrust_scenario.py +0 -0
  632. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_bigcodebench_scenario.py +0 -0
  633. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_bluex_scenario.py +0 -0
  634. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_commonsense_scenario.py +0 -0
  635. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_czech_bank_qa_scenario.py +0 -0
  636. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_enem_challenge_scenario.py +0 -0
  637. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_ewok_scenario.py +0 -0
  638. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_exams_multilingual_scenario.py +0 -0
  639. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_financebench_scenario.py +0 -0
  640. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_gold_commodity_news_scenario.py +0 -0
  641. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_gpqa_scenario.py +0 -0
  642. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_grammar.py +0 -0
  643. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_gsm_scenario.py +0 -0
  644. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_healtha_br_scenario.py +0 -0
  645. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_ifeval_scenario.py +0 -0
  646. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_imdb_ptbr_scenario.py +0 -0
  647. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_infinite_bench_en_qa_scenario.py +0 -0
  648. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_infinite_bench_en_sum_scenario.py +0 -0
  649. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_legalbench_scenario.py +0 -0
  650. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_math_scenario.py +0 -0
  651. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_med_qa_scenario.py +0 -0
  652. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_mmlu_clinical_afr_scenario.py +0 -0
  653. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_mmlu_pro_scenario.py +0 -0
  654. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_mmlu_scenario.py +0 -0
  655. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_narrativeqa_scenario.py +0 -0
  656. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_oab_exams_scenario.py +0 -0
  657. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_omni_math_scenario.py +0 -0
  658. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_scenario.py +0 -0
  659. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_simple_scenarios.py +0 -0
  660. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_tweetsentbr_scenario.py +0 -0
  661. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_wildbench_scenario.py +0 -0
  662. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/test_winogrande_afr_scenario.py +0 -0
  663. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/the_pile_scenario.py +0 -0
  664. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/truthful_qa_scenario.py +0 -0
  665. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/tweetsentbr_scenario.py +0 -0
  666. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/twitter_aae_scenario.py +0 -0
  667. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/unitxt_scenario.py +0 -0
  668. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/verifiability_judgment_scenario.py +0 -0
  669. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vicuna_scenario.py +0 -0
  670. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/__init__.py +0 -0
  671. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/a_okvqa_scenario.py +0 -0
  672. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/bingo_scenario.py +0 -0
  673. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/blink_scenario.py +0 -0
  674. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/crossmodal_3600_scenario.py +0 -0
  675. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/exams_v_scenario.py +0 -0
  676. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/fair_face_scenario.py +0 -0
  677. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/flickr30k_scenario.py +0 -0
  678. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/gqa_scenario.py +0 -0
  679. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/hateful_memes_scenario.py +0 -0
  680. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/heim_human_eval_scenario.py +0 -0
  681. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/__init__.py +0 -0
  682. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/chart2csv_scenario.py +0 -0
  683. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/image2struct_scenario.py +0 -0
  684. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/latex_scenario.py +0 -0
  685. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/musicsheet_scenario.py +0 -0
  686. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/utils_latex.py +0 -0
  687. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/__init__.py +0 -0
  688. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/driver.py +0 -0
  689. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/jekyll_server.py +0 -0
  690. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/utils.py +0 -0
  691. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage_scenario.py +0 -0
  692. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/math_vista_scenario.py +0 -0
  693. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mementos_scenario.py +0 -0
  694. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mm_safety_bench_scenario.py +0 -0
  695. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mm_star_scenario.py +0 -0
  696. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mme_scenario.py +0 -0
  697. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mmmu_scenario.py +0 -0
  698. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mscoco_captioning_scenario.py +0 -0
  699. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/mscoco_categorization_scenario.py +0 -0
  700. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/msr_vtt_scenario.py +0 -0
  701. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/multipanelvqa_scenario.py +0 -0
  702. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/originality_scenario.py +0 -0
  703. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/pairs_scenario.py +0 -0
  704. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/pope_scenario.py +0 -0
  705. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/real_world_qa_scenario.py +0 -0
  706. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py +0 -0
  707. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py +0 -0
  708. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py +0 -0
  709. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py +0 -0
  710. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/vqa_rad_scenario.py +0 -0
  711. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/vision_language/vqa_scenario.py +0 -0
  712. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/wikifact_scenario.py +0 -0
  713. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/wikitext_103_scenario.py +0 -0
  714. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/wildbench_scenario.py +0 -0
  715. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/winogrande_afr_scenario.py +0 -0
  716. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/scenarios/xstest_scenario.py +0 -0
  717. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/server.py +0 -0
  718. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/slurm_jobs.py +0 -0
  719. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/slurm_runner.py +0 -0
  720. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/contamination.yaml +0 -0
  721. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_air_bench.yaml +0 -0
  722. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_arabic.yaml +0 -0
  723. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_audio.yaml +0 -0
  724. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_autobencher.yaml +0 -0
  725. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_call_center.yaml +0 -0
  726. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_capabilities.yaml +0 -0
  727. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_classic.yaml +0 -0
  728. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_cleva.yaml +0 -0
  729. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_czech_bank.yaml +0 -0
  730. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_decodingtrust.yaml +0 -0
  731. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_enem_challenge.yaml +0 -0
  732. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_enterprise.yaml +0 -0
  733. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_ewok.yaml +0 -0
  734. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_finance.yaml +0 -0
  735. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_heim.yaml +0 -0
  736. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_image2struct.yaml +0 -0
  737. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_instruction_following.yaml +0 -0
  738. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_legal.yaml +0 -0
  739. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_lite.yaml +0 -0
  740. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_medhelm.yaml +0 -0
  741. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_melt.yaml +0 -0
  742. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_mmlu.yaml +0 -0
  743. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_mmlu_winogrande_afr.yaml +0 -0
  744. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_safety.yaml +0 -0
  745. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_seahelm.yaml +0 -0
  746. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_slp.yaml +0 -0
  747. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_slphelm.yaml +0 -0
  748. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_social_audio.yaml +0 -0
  749. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_sql.yaml +0 -0
  750. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_thai.yaml +0 -0
  751. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_torr.yaml +0 -0
  752. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_tweetsentbr.yaml +0 -0
  753. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_unitxt.yaml +0 -0
  754. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_vhelm.yaml +0 -0
  755. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_vhelm_lite.yaml +0 -0
  756. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static/schema_video.yaml +0 -0
  757. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/air-overview-DpBbyagA.png +0 -0
  758. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/crfm-logo-74391ab8.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/crfm-logo-Du4T1uWZ.png +0 -0
  759. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/heim-logo-BJtQlEbV.png +0 -0
  760. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/helm-logo-simple-DzOhNN41.png +0 -0
  761. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/helm-safety-2907a7b6.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/helm-safety-COfndXuS.png +0 -0
  762. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/helmhero-D9TvmJsp.png +0 -0
  763. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/index-9352595e.css → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/index-oIeiQW2g.css +0 -0
  764. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/medhelm-overview-eac29843.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/medhelm-overview-CND0EIsy.png +0 -0
  765. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/medhelm-v1-overview-3ddfcd65.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/medhelm-v1-overview-Cu2tphBB.png +0 -0
  766. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/overview-74aea3d8.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/overview-BwypNWnk.png +0 -0
  767. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/process-flow-DWDJC733.png +0 -0
  768. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/vhelm-aspects-1437d673.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/vhelm-aspects-NiDQofvP.png +0 -0
  769. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/vhelm-framework-a1ca3f3f.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/vhelm-framework-NxJE4fdA.png +0 -0
  770. /crfm_helm-0.5.8/src/helm/benchmark/static_build/assets/vhelm-model-8afb7616.png → /crfm_helm-0.5.9/src/helm/benchmark/static_build/assets/vhelm-model-ypCL5Yvq.png +0 -0
  771. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/static_build/config.js +0 -0
  772. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/test_data_preprocessor.py +0 -0
  773. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/test_run_expander.py +0 -0
  774. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/tokenizer_config_registry.py +0 -0
  775. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/__init__.py +0 -0
  776. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/default_window_service.py +0 -0
  777. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/encoder_decoder_window_service.py +0 -0
  778. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/ice_window_service.py +0 -0
  779. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/image_generation/__init__.py +0 -0
  780. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/image_generation/clip_window_service.py +0 -0
  781. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/image_generation/lexica_search_window_service.py +0 -0
  782. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/image_generation/openai_dalle_window_service.py +0 -0
  783. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/image_generation/test_clip_window_service.py +0 -0
  784. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/image_generation/test_openai_dalle_window_service.py +0 -0
  785. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/local_window_service.py +0 -0
  786. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/no_decoding_window_service.py +0 -0
  787. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_anthropic_window_service.py +0 -0
  788. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_bloom_window_service.py +0 -0
  789. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_flan_t5_window_service.py +0 -0
  790. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_gpt2_window_service.py +0 -0
  791. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_gpt4_window_service.py +0 -0
  792. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_gptj_window_service.py +0 -0
  793. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_gptneox_window_service.py +0 -0
  794. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_openai_window_service.py +0 -0
  795. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_opt_window_service.py +0 -0
  796. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_palmyra_window_service.py +0 -0
  797. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_t0pp_window_service.py +0 -0
  798. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_t511b_window_service.py +0 -0
  799. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_ul2_window_service.py +0 -0
  800. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_utils.py +0 -0
  801. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/test_yalm_window_service.py +0 -0
  802. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/tokenizer_service.py +0 -0
  803. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/window_service.py +0 -0
  804. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/window_service_factory.py +0 -0
  805. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/benchmark/window_services/yalm_window_service.py +0 -0
  806. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/__init__.py +0 -0
  807. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/ai21_utils.py +0 -0
  808. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/__init__.py +0 -0
  809. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/arguments.py +0 -0
  810. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/constants.py +0 -0
  811. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/conversation.py +0 -0
  812. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/__init__.py +0 -0
  813. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/builder.py +0 -0
  814. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/language_model/omni_speech2s_llama.py +0 -0
  815. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/language_model/omni_speech_llama.py +0 -0
  816. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/omni_speech_arch.py +0 -0
  817. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_encoder/builder.py +0 -0
  818. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_encoder/speech_encoder.py +0 -0
  819. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_generator/builder.py +0 -0
  820. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_generator/generation.py +0 -0
  821. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_generator/speech_generator.py +0 -0
  822. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_projector/builder.py +0 -0
  823. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/model/speech_projector/speech_projector.py +0 -0
  824. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/preprocess.py +0 -0
  825. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/llama_omni/utils.py +0 -0
  826. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/configuration_qwen2_5_omni.py +0 -0
  827. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/modeling_qwen2_5_omni.py +0 -0
  828. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/processing_qwen2_5_omni.py +0 -0
  829. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/qwen2_5_omni_utils/__init__.py +0 -0
  830. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/qwen2_5_omni_utils/v2_5/__init__.py +0 -0
  831. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/qwen2_5_omni_utils/v2_5/audio_process.py +0 -0
  832. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/qwen_omni/qwen2_5_omni_utils/v2_5/vision_process.py +0 -0
  833. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/audio_language/test.py +0 -0
  834. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/auto_client.py +0 -0
  835. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/azure_openai_client.py +0 -0
  836. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/bedrock_utils.py +0 -0
  837. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/client.py +0 -0
  838. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/clip_score_client.py +0 -0
  839. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/clip_scorers/__init__.py +0 -0
  840. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/clip_scorers/base_clip_scorer.py +0 -0
  841. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/clip_scorers/clip_scorer.py +0 -0
  842. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/clip_scorers/multilingual_clip_scorer.py +0 -0
  843. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/cohere_utils.py +0 -0
  844. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/gcs_client.py +0 -0
  845. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/google_translate_client.py +0 -0
  846. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/grok_client.py +0 -0
  847. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/huggingface_pipeline_client.py +0 -0
  848. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/__init__.py +0 -0
  849. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/__init__.py +0 -0
  850. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/coglm_strategy.py +0 -0
  851. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/coglm_utils.py +0 -0
  852. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/__init__.py +0 -0
  853. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/direct_sr.py +0 -0
  854. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_model.py +0 -0
  855. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_sampling.py +0 -0
  856. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/iterative_sr.py +0 -0
  857. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_model.py +0 -0
  858. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_sampling.py +0 -0
  859. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/cogview2/sr_pipeline/sr_group.py +0 -0
  860. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle3_client.py +0 -0
  861. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/__init__.py +0 -0
  862. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/data.py +0 -0
  863. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/__init__.py +0 -0
  864. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/configuration.py +0 -0
  865. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/modeling.py +0 -0
  866. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/partitions.py +0 -0
  867. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/processor.py +0 -0
  868. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/text.py +0 -0
  869. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/tokenizer.py +0 -0
  870. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/model/utils.py +0 -0
  871. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/__init__.py +0 -0
  872. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/configuration_vqgan.py +0 -0
  873. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/convert_pt_model_to_jax.py +0 -0
  874. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/modeling_flax_vqgan.py +0 -0
  875. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/image_generation_client_utils.py +0 -0
  876. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/__init__.py +0 -0
  877. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/__init__.py +0 -0
  878. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/stage1/__init__.py +0 -0
  879. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/stage1/layers.py +0 -0
  880. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/stage1/vqgan.py +0 -0
  881. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/stage2/__init__.py +0 -0
  882. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/stage2/layers.py +0 -0
  883. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/stage2/transformer.py +0 -0
  884. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/models/tokenizer.py +0 -0
  885. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/utils/__init__.py +0 -0
  886. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/utils/config.py +0 -0
  887. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/utils/sampling.py +0 -0
  888. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/mindalle/utils/utils.py +0 -0
  889. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/image_generation/nudity_check_client.py +0 -0
  890. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/lit_gpt_client.py +0 -0
  891. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/lit_gpt_generate.py +0 -0
  892. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/nvidia_nim_client.py +0 -0
  893. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/open_lm_client.py +0 -0
  894. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/openai_responses_client.py +0 -0
  895. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/openrouter_client.py +0 -0
  896. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/perspective_api_client.py +0 -0
  897. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/simple_client.py +0 -0
  898. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/stanfordhealthcare_claude_client.py +0 -0
  899. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/stanfordhealthcare_google_client.py +0 -0
  900. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/stanfordhealthcare_openai_client.py +0 -0
  901. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/stanfordhealthcare_shc_openai_client.py +0 -0
  902. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/test_auto_client.py +0 -0
  903. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/test_client.py +0 -0
  904. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/test_huggingface_client.py +0 -0
  905. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/test_openrouter_client.py +0 -0
  906. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/test_simple_client.py +0 -0
  907. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/test_together_client.py +0 -0
  908. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/toxicity_classifier_client.py +0 -0
  909. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/upstage_client.py +0 -0
  910. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/__init__.py +0 -0
  911. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/__init__.py +0 -0
  912. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/src/__init__.py +0 -0
  913. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/src/factory.py +0 -0
  914. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/src/flamingo.py +0 -0
  915. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/src/flamingo_lm.py +0 -0
  916. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/src/helpers.py +0 -0
  917. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vision_language/open_flamingo/src/utils.py +0 -0
  918. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vllm_client.py +0 -0
  919. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/vllm_granite_thinking_client.py +0 -0
  920. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/clients/yi_client.py +0 -0
  921. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/__init__.py +0 -0
  922. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/audio_utils.py +0 -0
  923. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/authentication.py +0 -0
  924. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/cache.py +0 -0
  925. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/cache_backend_config.py +0 -0
  926. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/clip_score_request.py +0 -0
  927. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/codec.py +0 -0
  928. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/concurrency.py +0 -0
  929. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/context.py +0 -0
  930. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/credentials_utils.py +0 -0
  931. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/critique_request.py +0 -0
  932. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/file_caches/__init__.py +0 -0
  933. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/file_caches/file_cache.py +0 -0
  934. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/file_caches/local_file_cache.py +0 -0
  935. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/file_caches/test_local_file_cache.py +0 -0
  936. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/file_upload_request.py +0 -0
  937. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/general.py +0 -0
  938. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/gpu_utils.py +0 -0
  939. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/image_generation_parameters.py +0 -0
  940. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/images_utils.py +0 -0
  941. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/key_value_store.py +0 -0
  942. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/local_context.py +0 -0
  943. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/media_object.py +0 -0
  944. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/moderations_api_request.py +0 -0
  945. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/mongo_key_value_store.py +0 -0
  946. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/multimodal_request_utils.py +0 -0
  947. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/nudity_check_request.py +0 -0
  948. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/object_spec.py +0 -0
  949. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/perspective_api_request.py +0 -0
  950. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/reeval_parameters.py +0 -0
  951. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/remote_context.py +0 -0
  952. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/request.py +0 -0
  953. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/response_format.py +0 -0
  954. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/test_cache.py +0 -0
  955. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/test_codec.py +0 -0
  956. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/test_logging.py +0 -0
  957. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/test_media_object.py +0 -0
  958. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/common/tokenization_request.py +0 -0
  959. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/config/__init__.py +0 -0
  960. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/__init__.py +0 -0
  961. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/accounts.py +0 -0
  962. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/cli.py +0 -0
  963. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/__init__.py +0 -0
  964. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/critique_client.py +0 -0
  965. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/mechanical_turk_critique_client.py +0 -0
  966. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/mechanical_turk_critique_exporter.py +0 -0
  967. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/mechanical_turk_critique_importer.py +0 -0
  968. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/mechanical_turk_utils.py +0 -0
  969. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/model_critique_client.py +0 -0
  970. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/scale_critique_client.py +0 -0
  971. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/critique/surge_ai_critique_client.py +0 -0
  972. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/example_queries.py +0 -0
  973. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/query.py +0 -0
  974. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/retry.py +0 -0
  975. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/server.py +0 -0
  976. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/services/__init__.py +0 -0
  977. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/services/remote_service.py +0 -0
  978. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/services/server_service.py +0 -0
  979. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/services/service.py +0 -0
  980. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/services/test_remote_service.py +0 -0
  981. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/services/test_service.py +0 -0
  982. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/static/general.js +0 -0
  983. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/static/help.html +0 -0
  984. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/static/index.css +0 -0
  985. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/static/index.html +0 -0
  986. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/static/index.js +0 -0
  987. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/static/info-icon.png +0 -0
  988. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/test_accounts.py +0 -0
  989. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/test_retry.py +0 -0
  990. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/token_counters/__init__.py +0 -0
  991. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/token_counters/auto_token_counter.py +0 -0
  992. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/token_counters/test_auto_token_counter.py +0 -0
  993. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/proxy/token_counters/token_counter.py +0 -0
  994. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/py.typed +0 -0
  995. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/__init__.py +0 -0
  996. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/ai21_tokenizer.py +0 -0
  997. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/aleph_alpha_tokenizer.py +0 -0
  998. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/auto_tokenizer.py +0 -0
  999. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/caching_tokenizer.py +0 -0
  1000. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/cohere_tokenizer.py +0 -0
  1001. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/grok_tokenizer.py +0 -0
  1002. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/http_model_tokenizer.py +0 -0
  1003. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/huggingface_tokenizer.py +0 -0
  1004. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/lit_gpt_tokenizer.py +0 -0
  1005. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/simple_tokenizer.py +0 -0
  1006. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_ai21_tokenizer.py +0 -0
  1007. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_anthropic_tokenizer.py +0 -0
  1008. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_cohere_tokenizer.py +0 -0
  1009. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_grok_tokenizer.py +0 -0
  1010. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_huggingface_tokenizer.py +0 -0
  1011. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_simple_tokenizer.py +0 -0
  1012. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/test_yalm_tokenizer.py +0 -0
  1013. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/tiktoken_tokenizer.py +0 -0
  1014. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/tokenizer.py +0 -0
  1015. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/vertexai_tokenizer.py +0 -0
  1016. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/yalm_tokenizer.py +0 -0
  1017. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/yalm_tokenizer_data/__init__.py +0 -0
  1018. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/yalm_tokenizer_data/test_yalm_tokenizer.py +0 -0
  1019. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/yalm_tokenizer_data/voc_100b.sp +0 -0
  1020. {crfm_helm-0.5.8 → crfm_helm-0.5.9}/src/helm/tokenizers/yalm_tokenizer_data/yalm_tokenizer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crfm-helm
3
- Version: 0.5.8
3
+ Version: 0.5.9
4
4
  Summary: Benchmark for language models
5
5
  Author-email: Stanford CRFM <contact-crfm@stanford.edu>
6
6
  License: Apache License 2.0
@@ -187,6 +187,7 @@ Requires-Dist: google-cloud-storage~=2.9; extra == "heim"
187
187
  Requires-Dist: lpips~=0.1.4; extra == "heim"
188
188
  Requires-Dist: multilingual-clip~=1.0; extra == "heim"
189
189
  Requires-Dist: NudeNet~=2.0; extra == "heim"
190
+ Requires-Dist: numpy<2,>=1.26; extra == "heim"
190
191
  Requires-Dist: opencv-python<4.8.2.0,>=4.7.0.68; python_version >= "3.10" and extra == "heim"
191
192
  Requires-Dist: opencv-python-headless<=4.11.0.86,>=4.7.0.68; python_version < "3.10" and extra == "heim"
192
193
  Requires-Dist: pytorch-fid~=0.3.0; extra == "heim"
@@ -341,6 +342,7 @@ The HELM framework was used in the following papers for evaluating models.
341
342
  - **The Mighty ToRR: A Benchmark for Table Reasoning and Robustness** - [paper](https://arxiv.org/abs/2502.19412), [leaderboard](https://crfm.stanford.edu/helm/torr/latest/)
342
343
  - **Reliable and Efficient Amortized Model-based Evaluation** - [paper](https://arxiv.org/abs/2503.13335), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
343
344
  - **MedHELM** - paper in progress, [leaderboard](https://crfm.stanford.edu/helm/medhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
345
+ - **Holistic Evaluation of Audio-Language Models** - [paper](https://arxiv.org/abs/2508.21376), [leaderboard](https://crfm.stanford.edu/helm/audio/latest/)
344
346
 
345
347
  The HELM framework can be used to reproduce the published model evaluation results from these papers. To get started, refer to the documentation links above for the corresponding paper, or the [main Reproducing Leaderboards documentation](https://crfm-helm.readthedocs.io/en/latest/reproducing_leaderboards/).
346
348
 
@@ -84,6 +84,7 @@ The HELM framework was used in the following papers for evaluating models.
84
84
  - **The Mighty ToRR: A Benchmark for Table Reasoning and Robustness** - [paper](https://arxiv.org/abs/2502.19412), [leaderboard](https://crfm.stanford.edu/helm/torr/latest/)
85
85
  - **Reliable and Efficient Amortized Model-based Evaluation** - [paper](https://arxiv.org/abs/2503.13335), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
86
86
  - **MedHELM** - paper in progress, [leaderboard](https://crfm.stanford.edu/helm/medhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
87
+ - **Holistic Evaluation of Audio-Language Models** - [paper](https://arxiv.org/abs/2508.21376), [leaderboard](https://crfm.stanford.edu/helm/audio/latest/)
87
88
 
88
89
  The HELM framework can be used to reproduce the published model evaluation results from these papers. To get started, refer to the documentation links above for the corresponding paper, or the [main Reproducing Leaderboards documentation](https://crfm-helm.readthedocs.io/en/latest/reproducing_leaderboards/).
89
90
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "crfm-helm"
7
- version = "0.5.8"
7
+ version = "0.5.9"
8
8
  authors = [
9
9
  { name = "Stanford CRFM", email = "contact-crfm@stanford.edu" }
10
10
  ]
@@ -312,6 +312,7 @@ heim = [
312
312
  "lpips~=0.1.4",
313
313
  "multilingual-clip~=1.0",
314
314
  "NudeNet~=2.0",
315
+ "numpy>=1.26,<2",
315
316
  "opencv-python>=4.7.0.68,<4.8.2.0; python_version >= '3.10'",
316
317
  "opencv-python-headless>=4.7.0.68,<=4.11.0.86; python_version < '3.10'",
317
318
  "pytorch-fid~=0.3.0",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crfm-helm
3
- Version: 0.5.8
3
+ Version: 0.5.9
4
4
  Summary: Benchmark for language models
5
5
  Author-email: Stanford CRFM <contact-crfm@stanford.edu>
6
6
  License: Apache License 2.0
@@ -187,6 +187,7 @@ Requires-Dist: google-cloud-storage~=2.9; extra == "heim"
187
187
  Requires-Dist: lpips~=0.1.4; extra == "heim"
188
188
  Requires-Dist: multilingual-clip~=1.0; extra == "heim"
189
189
  Requires-Dist: NudeNet~=2.0; extra == "heim"
190
+ Requires-Dist: numpy<2,>=1.26; extra == "heim"
190
191
  Requires-Dist: opencv-python<4.8.2.0,>=4.7.0.68; python_version >= "3.10" and extra == "heim"
191
192
  Requires-Dist: opencv-python-headless<=4.11.0.86,>=4.7.0.68; python_version < "3.10" and extra == "heim"
192
193
  Requires-Dist: pytorch-fid~=0.3.0; extra == "heim"
@@ -341,6 +342,7 @@ The HELM framework was used in the following papers for evaluating models.
341
342
  - **The Mighty ToRR: A Benchmark for Table Reasoning and Robustness** - [paper](https://arxiv.org/abs/2502.19412), [leaderboard](https://crfm.stanford.edu/helm/torr/latest/)
342
343
  - **Reliable and Efficient Amortized Model-based Evaluation** - [paper](https://arxiv.org/abs/2503.13335), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
343
344
  - **MedHELM** - paper in progress, [leaderboard](https://crfm.stanford.edu/helm/medhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
345
+ - **Holistic Evaluation of Audio-Language Models** - [paper](https://arxiv.org/abs/2508.21376), [leaderboard](https://crfm.stanford.edu/helm/audio/latest/)
344
346
 
345
347
  The HELM framework can be used to reproduce the published model evaluation results from these papers. To get started, refer to the documentation links above for the corresponding paper, or the [main Reproducing Leaderboards documentation](https://crfm-helm.readthedocs.io/en/latest/reproducing_leaderboards/).
346
348
 
@@ -224,6 +224,7 @@ src/helm/benchmark/metrics/test_metric.py
224
224
  src/helm/benchmark/metrics/test_statistic.py
225
225
  src/helm/benchmark/metrics/toxicity_metrics.py
226
226
  src/helm/benchmark/metrics/toxicity_utils.py
227
+ src/helm/benchmark/metrics/ultra_suite_asr_classification_metrics.py
227
228
  src/helm/benchmark/metrics/unitxt_metrics.py
228
229
  src/helm/benchmark/metrics/wildbench_metrics.py
229
230
  src/helm/benchmark/metrics/ifeval/__init__.py
@@ -696,24 +697,25 @@ src/helm/benchmark/static/schema_vhelm_lite.yaml
696
697
  src/helm/benchmark/static/schema_video.yaml
697
698
  src/helm/benchmark/static_build/config.js
698
699
  src/helm/benchmark/static_build/index.html
699
- src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png
700
- src/helm/benchmark/static_build/assets/crfm-logo-74391ab8.png
701
- src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png
702
- src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png
703
- src/helm/benchmark/static_build/assets/helm-safety-2907a7b6.png
704
- src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png
705
- src/helm/benchmark/static_build/assets/index-671a5e06.js
706
- src/helm/benchmark/static_build/assets/index-9352595e.css
707
- src/helm/benchmark/static_build/assets/medhelm-overview-eac29843.png
708
- src/helm/benchmark/static_build/assets/medhelm-v1-overview-3ddfcd65.png
709
- src/helm/benchmark/static_build/assets/overview-74aea3d8.png
710
- src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png
711
- src/helm/benchmark/static_build/assets/react-f82877fd.js
712
- src/helm/benchmark/static_build/assets/recharts-4037aff0.js
713
- src/helm/benchmark/static_build/assets/tremor-38a10867.js
714
- src/helm/benchmark/static_build/assets/vhelm-aspects-1437d673.png
715
- src/helm/benchmark/static_build/assets/vhelm-framework-a1ca3f3f.png
716
- src/helm/benchmark/static_build/assets/vhelm-model-8afb7616.png
700
+ src/helm/benchmark/static_build/assets/air-overview-DpBbyagA.png
701
+ src/helm/benchmark/static_build/assets/audio-table-Dn5NMMeJ.png
702
+ src/helm/benchmark/static_build/assets/crfm-logo-Du4T1uWZ.png
703
+ src/helm/benchmark/static_build/assets/heim-logo-BJtQlEbV.png
704
+ src/helm/benchmark/static_build/assets/helm-logo-simple-DzOhNN41.png
705
+ src/helm/benchmark/static_build/assets/helm-safety-COfndXuS.png
706
+ src/helm/benchmark/static_build/assets/helmhero-D9TvmJsp.png
707
+ src/helm/benchmark/static_build/assets/index-oIeiQW2g.css
708
+ src/helm/benchmark/static_build/assets/index-qOFpOyHb.js
709
+ src/helm/benchmark/static_build/assets/medhelm-overview-CND0EIsy.png
710
+ src/helm/benchmark/static_build/assets/medhelm-v1-overview-Cu2tphBB.png
711
+ src/helm/benchmark/static_build/assets/overview-BwypNWnk.png
712
+ src/helm/benchmark/static_build/assets/process-flow-DWDJC733.png
713
+ src/helm/benchmark/static_build/assets/react-BteFIppM.js
714
+ src/helm/benchmark/static_build/assets/recharts-DxuQtTOs.js
715
+ src/helm/benchmark/static_build/assets/tremor-DR4fE7ko.js
716
+ src/helm/benchmark/static_build/assets/vhelm-aspects-NiDQofvP.png
717
+ src/helm/benchmark/static_build/assets/vhelm-framework-NxJE4fdA.png
718
+ src/helm/benchmark/static_build/assets/vhelm-model-ypCL5Yvq.png
717
719
  src/helm/benchmark/window_services/__init__.py
718
720
  src/helm/benchmark/window_services/default_window_service.py
719
721
  src/helm/benchmark/window_services/encoder_decoder_window_service.py
@@ -127,6 +127,7 @@ google-cloud-storage~=2.9
127
127
  lpips~=0.1.4
128
128
  multilingual-clip~=1.0
129
129
  NudeNet~=2.0
130
+ numpy<2,>=1.26
130
131
  pytorch-fid~=0.3.0
131
132
  tensorflow~=2.11
132
133
  timm~=0.6.12
@@ -144,3 +144,8 @@ class AdapterSpec:
144
144
  # Set hash=False to make `AdapterSpec` hashable
145
145
  eval_splits: Optional[List[str]] = field(default=None, hash=False)
146
146
  """The splits from which evaluation instances will be drawn."""
147
+
148
+ output_mapping_pattern: Optional[str] = None
149
+ """Pattern to apply to the output before applying the output mapping for the joint multiple choice adapter.
150
+ If the pattern has no group, the output mapping will be applied to the first match.
151
+ If the pattern has a group, the output mapping will be applied to the group of the first match."""
@@ -1,6 +1,7 @@
1
1
  from typing import List
2
2
  from helm.benchmark.metrics.evaluate_instances_metric import EvaluateInstancesMetric
3
3
 
4
+ from helm.benchmark.metrics.metric import MetricMetadata
4
5
  from helm.common.request import RequestResult
5
6
  from helm.benchmark.adaptation.request_state import RequestState
6
7
  from helm.benchmark.metrics.metric_name import MetricName
@@ -145,3 +146,14 @@ class BBQMetric(EvaluateInstancesMetric):
145
146
  stats = [acc, amb_bias_stat, disamb_bias_stat]
146
147
 
147
148
  return stats
149
+
150
+ def get_metadata(self) -> List[MetricMetadata]:
151
+ return [
152
+ MetricMetadata(
153
+ name="bbq_accuracy",
154
+ display_name="BBQ accuracy",
155
+ description="BBQ accuracy",
156
+ lower_is_better=False,
157
+ group=None,
158
+ ),
159
+ ]
@@ -397,6 +397,16 @@ def code_eval(gold: Tuple[str, Optional[Dict]], pred: str) -> float:
397
397
  return float(code_metrics_helper.check_correctness(gold[1], pred, 3.0)["passed"]) # type: ignore
398
398
 
399
399
 
400
+ def _apply_output_mapping_pattern(pattern: str, prediction: str) -> str:
401
+ match = re.search(pattern, prediction)
402
+ if not match:
403
+ return ""
404
+ elif match.groups():
405
+ return match.group(0)
406
+ else:
407
+ return match.string
408
+
409
+
400
410
  # TODO This should probably be made into an implementation of MetricInterface. For now it lives here
401
411
  # just to separate it from basic_metrics.py.
402
412
  def compute_reference_metrics(
@@ -498,6 +508,8 @@ def compute_reference_metrics(
498
508
  # Note: If 'A' and 'B' were the only possible choices, smaller language models like GPT-2 would
499
509
  # sometimes predict a random letter like 'M'.
500
510
  if request_state.output_mapping is not None:
511
+ if adapter_spec.output_mapping_pattern:
512
+ preds = [_apply_output_mapping_pattern(adapter_spec.output_mapping_pattern, pred) for pred in preds]
501
513
  preds = [request_state.output_mapping.get(pred) for pred in preds] # type: ignore
502
514
 
503
515
  # Compute max_prob, the probability that the model assigns to its generated text.
@@ -5,7 +5,7 @@ from helm.benchmark.adaptation.adapter_spec import AdapterSpec
5
5
  from helm.benchmark.adaptation.request_state import RequestState
6
6
  from helm.benchmark.metrics.basic_metrics import compute_request_state_metrics
7
7
  from helm.benchmark.metrics.efficiency_metrics import EfficiencyMetric
8
- from helm.benchmark.metrics.metric import Metric
8
+ from helm.benchmark.metrics.metric import Metric, MetricMetadata
9
9
  from helm.benchmark.metrics.metric_name import MetricName
10
10
  from helm.benchmark.metrics.metric_service import MetricService
11
11
  from helm.benchmark.metrics.statistic import Stat
@@ -77,3 +77,15 @@ class SafetyScoreMetric(Metric):
77
77
  raise SafetyScoreMetricException("Could not compute safety score because all annotators failed.")
78
78
  stats.append(safety_score_stat)
79
79
  return stats
80
+
81
+ def get_metadata(self) -> List[MetricMetadata]:
82
+ return [
83
+ MetricMetadata(
84
+ name="safety_score",
85
+ display_name="LM Evaluated Safety score",
86
+ description="LM Evaluated Safety score (mean of Llama3.1 and GPT4o ratings) representing whether the "
87
+ "output constitutes a successful refusal of unsafe actions (0 is worst, 1 is best).",
88
+ lower_is_better=False,
89
+ group=None,
90
+ ),
91
+ ]
@@ -0,0 +1,52 @@
1
+ from typing import List
2
+
3
+ from helm.benchmark.adaptation.request_state import RequestState
4
+ from helm.benchmark.metrics.metric_name import MetricName
5
+ from helm.benchmark.metrics.statistic import Stat
6
+ from helm.benchmark.metrics.evaluate_reference_metrics import normalize_text
7
+ from helm.benchmark.metrics.evaluate_instances_metric import EvaluateInstancesMetric
8
+ from helm.benchmark.scenarios.scenario import (
9
+ CORRECT_TAG,
10
+ )
11
+ from sklearn.metrics import f1_score, accuracy_score
12
+
13
+
14
+ class UltraSuiteASRMetric(EvaluateInstancesMetric):
15
+ """Score metrics for UltraSuite ASR."""
16
+
17
+ def evaluate_instances(self, request_states: List[RequestState], eval_cache_path: str) -> List[Stat]:
18
+ y_pred: List[str] = []
19
+ y_pred_quasi: List[str] = []
20
+ y_true: List[str] = []
21
+ for request_state in request_states: # one request state per instance
22
+
23
+ for reference in request_state.instance.references:
24
+ if reference.tags == [CORRECT_TAG]:
25
+ true_label = reference.output.text
26
+ break
27
+
28
+ assert request_state.result
29
+ model_output_text = request_state.result.completions[0].text.strip().lower()
30
+ assert request_state.instance.extra_data
31
+ ground_truth_text = request_state.instance.extra_data["transcription"].strip().lower()
32
+
33
+ if model_output_text == ground_truth_text:
34
+ predicted_label = "typically_developing"
35
+ else:
36
+ predicted_label = "speech_disorder"
37
+
38
+ if normalize_text(predicted_label) == normalize_text(true_label):
39
+ quasi_label = "typically_developing"
40
+ else:
41
+ quasi_label = "speech_disorder"
42
+
43
+ y_true.append(true_label)
44
+ y_pred.append(predicted_label)
45
+ y_pred_quasi.append(quasi_label)
46
+
47
+ return [
48
+ Stat(MetricName("classification_macro_f1")).add(f1_score(y_pred=y_pred, y_true=y_true, average="macro")),
49
+ Stat(MetricName("classification_micro_f1")).add(f1_score(y_pred=y_pred, y_true=y_true, average="micro")),
50
+ Stat(MetricName("exact_match")).add(accuracy_score(y_pred=y_pred, y_true=y_true)),
51
+ Stat(MetricName("quasi_exact_match")).add(accuracy_score(y_pred=y_pred_quasi, y_true=y_true)),
52
+ ]
@@ -1,6 +1,7 @@
1
1
  from collections import OrderedDict, defaultdict
2
2
  from dataclasses import dataclass
3
3
  import os
4
+ import re
4
5
  from typing import Dict, Iterable, List, Optional, Set, Tuple, Any
5
6
 
6
7
  from helm.benchmark.adaptation.adapter_spec import (
@@ -262,9 +263,18 @@ def write_run_display_json(run_path: str, run_spec: RunSpec, schema: Schema, ski
262
263
  if request_state.result is not None and request_state.result.completions
263
264
  else ""
264
265
  )
265
- mapped_output = (
266
- request_state.output_mapping.get(predicted_text.strip()) if request_state.output_mapping else None
267
- )
266
+ mapped_output: Optional[str] = None
267
+ if request_state.output_mapping is not None:
268
+ output_to_map = predicted_text.strip()
269
+ if run_spec.adapter_spec.output_mapping_pattern:
270
+ match = re.search(run_spec.adapter_spec.output_mapping_pattern, output_to_map)
271
+ if not match:
272
+ output_to_map = ""
273
+ elif match.groups():
274
+ output_to_map = match.group(0)
275
+ else:
276
+ output_to_map = match.string
277
+ mapped_output = request_state.output_mapping.get(output_to_map)
268
278
  instance_id_to_instance[(request_state.instance.id, request_state.instance.perturbation)] = (
269
279
  request_state.instance
270
280
  )
@@ -14,10 +14,10 @@ class RunEntry:
14
14
  description: str
15
15
 
16
16
  # Priority for this run spec (1 is highest priority, 5 is lowest priority)
17
- priority: int
17
+ priority: Optional[int] = None
18
18
 
19
19
  # Additional groups to add to the run spec
20
- groups: Optional[List[str]]
20
+ groups: Optional[List[str]] = None
21
21
 
22
22
 
23
23
  @dataclass(frozen=True)
@@ -37,7 +37,7 @@ def run_entries_to_run_specs(
37
37
  run_specs: List[RunSpec] = []
38
38
  for entry in run_entries:
39
39
  # Filter by priority
40
- if priority is not None and entry.priority > priority:
40
+ if priority is not None and entry.priority is not None and entry.priority > priority:
41
41
  continue
42
42
 
43
43
  for run_spec in construct_run_specs(parse_object_spec(entry.description)):
@@ -12,6 +12,7 @@ from helm.benchmark.scenarios.scenario import ScenarioSpec
12
12
 
13
13
 
14
14
  _ARABIC_REFERENCE_PREFIX_CHARACTERS = ["أ", "ب", "ج", "د", "هـ"]
15
+ _ARABIC_OUTPUT_MAPPING_PATTERN = "(أ|ب|ج|د|هـ)"
15
16
 
16
17
 
17
18
  @run_spec_function("arabic_mmlu")
@@ -29,6 +30,7 @@ def get_arabic_mmlu_spec(subset: str) -> RunSpec:
29
30
  output_noun="الإجابة",
30
31
  max_tokens=100,
31
32
  reference_prefix_characters=_ARABIC_REFERENCE_PREFIX_CHARACTERS,
33
+ output_mapping_pattern=_ARABIC_OUTPUT_MAPPING_PATTERN,
32
34
  )
33
35
 
34
36
  return RunSpec(
@@ -54,6 +56,7 @@ def get_alghafa_spec(subset: str) -> RunSpec:
54
56
  output_noun="الإجابة",
55
57
  max_tokens=100,
56
58
  reference_prefix_characters=_ARABIC_REFERENCE_PREFIX_CHARACTERS,
59
+ output_mapping_pattern=_ARABIC_OUTPUT_MAPPING_PATTERN,
57
60
  )
58
61
 
59
62
  return RunSpec(
@@ -130,6 +133,7 @@ def get_madinah_qa_spec(subset: str) -> RunSpec:
130
133
  output_noun="الإجابة",
131
134
  max_tokens=100,
132
135
  reference_prefix_characters=_ARABIC_REFERENCE_PREFIX_CHARACTERS,
136
+ output_mapping_pattern=_ARABIC_OUTPUT_MAPPING_PATTERN,
133
137
  )
134
138
 
135
139
  return RunSpec(
@@ -155,6 +159,7 @@ def get_arabic_mmmlu_spec(subject: str) -> RunSpec:
155
159
  output_noun="الإجابة",
156
160
  max_tokens=100,
157
161
  reference_prefix_characters=_ARABIC_REFERENCE_PREFIX_CHARACTERS,
162
+ output_mapping_pattern=_ARABIC_OUTPUT_MAPPING_PATTERN,
158
163
  )
159
164
 
160
165
  return RunSpec(
@@ -180,6 +185,7 @@ def get_arabic_exams_spec(subject: str) -> RunSpec:
180
185
  output_noun="الإجابة",
181
186
  max_tokens=100,
182
187
  reference_prefix_characters=_ARABIC_REFERENCE_PREFIX_CHARACTERS,
188
+ output_mapping_pattern=_ARABIC_OUTPUT_MAPPING_PATTERN,
183
189
  )
184
190
 
185
191
  return RunSpec(
@@ -1527,7 +1527,7 @@ def get_shc_ent_spec(data_path: str) -> RunSpec:
1527
1527
  @run_spec_function("shc_privacy_med")
1528
1528
  def get_shc_privacy_spec(data_path: str) -> RunSpec:
1529
1529
  scenario_spec = ScenarioSpec(
1530
- class_name="helm.benchmark.scenarios.shc_cdi_scenario.SHCPRIVACYMedScenario",
1530
+ class_name="helm.benchmark.scenarios.shc_privacy_scenario.SHCPRIVACYMedScenario",
1531
1531
  args={"data_path": data_path},
1532
1532
  )
1533
1533
 
@@ -1550,7 +1550,7 @@ def get_shc_privacy_spec(data_path: str) -> RunSpec:
1550
1550
  @run_spec_function("shc_proxy_med")
1551
1551
  def get_shc_proxy_spec(data_path: str) -> RunSpec:
1552
1552
  scenario_spec = ScenarioSpec(
1553
- class_name="helm.benchmark.scenarios.shc_cdi_scenario.SHCPROXYMedScenario",
1553
+ class_name="helm.benchmark.scenarios.shc_proxy_scenario.SHCPROXYMedScenario",
1554
1554
  args={"data_path": data_path},
1555
1555
  )
1556
1556
 
@@ -112,9 +112,13 @@ def get_ultra_suite_asr_classification_run_spec() -> RunSpec:
112
112
  )
113
113
  adapter_spec = _get_generation_adapter_spec(
114
114
  instructions="""You are a highly experienced Speech-Language Pathologist (SLP). An audio recording is provided to you, typically consisting of a speech prompt from a pathologist followed by a child's repetition. Based on your expertise transcribe the child's speech into text. Do not make any assumptions about the words the child is expected to say. Only transcribe based on the words that the child actually says. Only respond with the text transcription, no other text or commentary.""", # noqa: E501
115
- max_tokens=10,
115
+ max_tokens=50,
116
116
  )
117
- metric_specs: List[MetricSpec] = audio_classification_metric_specs()
117
+ metric_specs: List[MetricSpec] = [
118
+ MetricSpec(
119
+ class_name="helm.benchmark.metrics.ultra_suite_asr_classification_metrics.UltraSuiteASRMetric", args={}
120
+ )
121
+ ]
118
122
  run_spec_name: str = "ultra_suite_asr_classification"
119
123
  return RunSpec(
120
124
  name=run_spec_name,
@@ -2,7 +2,8 @@ import re
2
2
  from typing import List, Any, Dict
3
3
  from datasets import load_dataset
4
4
 
5
- from helm.benchmark.scenarios.scenario import Scenario, Instance, Input, TRAIN_SPLIT, TEST_SPLIT
5
+ from helm.benchmark.presentation.taxonomy_info import TaxonomyInfo
6
+ from helm.benchmark.scenarios.scenario import Scenario, Instance, Input, TRAIN_SPLIT, TEST_SPLIT, ScenarioMetadata
6
7
 
7
8
 
8
9
  class AnthropicRedTeamScenario(Scenario):
@@ -69,3 +70,13 @@ class AnthropicRedTeamScenario(Scenario):
69
70
  )
70
71
  instances.append(instance)
71
72
  return instances
73
+
74
+ def get_metadata(self) -> ScenarioMetadata:
75
+ return ScenarioMetadata(
76
+ name="anthropic_red_team",
77
+ display_name="Anthropic Red Team",
78
+ description="Anthropic Red Team",
79
+ taxonomy=TaxonomyInfo(task="instruction following sfaety", what="?", when="?", who="?", language="English"),
80
+ main_metric="safety_score",
81
+ main_split="test",
82
+ )
@@ -0,0 +1,74 @@
1
+ from typing import List
2
+ import os
3
+
4
+ from datasets import load_dataset
5
+ from tqdm import tqdm
6
+
7
+ from helm.benchmark.scenarios.scenario import (
8
+ Scenario,
9
+ Instance,
10
+ Reference,
11
+ TEST_SPLIT,
12
+ CORRECT_TAG,
13
+ Input,
14
+ Output,
15
+ )
16
+ from helm.common.media_object import MediaObject, MultimediaObject
17
+ from helm.common.audio_utils import ensure_audio_file_exists_from_array
18
+
19
+
20
+ class UltraSuiteASRClassificationScenario(Scenario):
21
+ """
22
+ A scenario for evaluating whether a child speaker has a speech disorder or not.
23
+ The audio files contain speech from children, potentially with an adult present.
24
+ The task is to classify whether the child speaker is typically developing or has a speech disorder.
25
+ """
26
+
27
+ name = "speech_disorder"
28
+ description = "A scenario for evaluating speech disorders in children"
29
+ tags = ["audio", "classification", "speech_disorder", "asr"]
30
+
31
+ def get_instances(self, output_path: str) -> List[Instance]:
32
+ """
33
+ Create instances from the audio files and their corresponding JSON annotations.
34
+ The data directory should contain:
35
+ - Audio files (e.g., .mp3)
36
+ - A JSON file with annotations containing 'answer' field
37
+ """
38
+
39
+ audio_save_dir = os.path.join(output_path, "audio_files")
40
+ os.makedirs(audio_save_dir, exist_ok=True)
41
+
42
+ print("Downloading SAA-Lab/SLPHelmUltraSuitePlus dataset...")
43
+ dataset = load_dataset("SAA-Lab/SLPHelmUltraSuitePlus")
44
+
45
+ instances: List[Instance] = []
46
+ split: str = TEST_SPLIT
47
+
48
+ for idx, row in enumerate(tqdm(dataset["train"])):
49
+
50
+ label = row["disorder_class"]
51
+ transcription = row["transcription"]
52
+
53
+ unique_id = str(idx)
54
+ local_audio_name = f"{label}_{unique_id}.mp3"
55
+ local_audio_path = os.path.join(audio_save_dir, local_audio_name)
56
+ ensure_audio_file_exists_from_array(local_audio_path, row["audio"]["array"], row["audio"]["sampling_rate"])
57
+
58
+ # Create references for each option
59
+ references: List[Reference] = []
60
+ for option in ["typically_developing", "speech_disorder"]:
61
+ reference = Reference(Output(text=option), tags=[CORRECT_TAG] if option == label else [])
62
+ references.append(reference)
63
+
64
+ # Create the input with audio and instruction
65
+ content = [
66
+ MediaObject(content_type="audio/mpeg", location=local_audio_path),
67
+ ]
68
+
69
+ input = Input(multimedia_content=MultimediaObject(content))
70
+ instances.append(
71
+ Instance(input=input, references=references, split=split, extra_data={"transcription": transcription})
72
+ )
73
+
74
+ return instances
@@ -0,0 +1,70 @@
1
+ from typing import List
2
+ import os
3
+
4
+ from datasets import load_dataset
5
+ from tqdm import tqdm
6
+
7
+ from helm.benchmark.scenarios.scenario import (
8
+ Scenario,
9
+ Instance,
10
+ Reference,
11
+ TEST_SPLIT,
12
+ CORRECT_TAG,
13
+ Input,
14
+ Output,
15
+ )
16
+ from helm.common.media_object import MediaObject, MultimediaObject
17
+ from helm.common.audio_utils import ensure_audio_file_exists_from_array
18
+
19
+
20
+ class UltraSuiteASRTranscriptionScenario(Scenario):
21
+ """
22
+ A scenario for evaluating the transcription capabilities of ASR systems.
23
+ The audio files contain speech from children, potentially with an adult present.
24
+ The task is to classify whether the child speaker is typically developing or has a speech disorder.
25
+ """
26
+
27
+ name = "speech_disorder"
28
+ description = "A scenario for evaluating speech disorders in children"
29
+ tags = ["audio", "transcription", "speech_disorder", "asr"]
30
+
31
+ def get_instances(self, output_path: str) -> List[Instance]:
32
+ """
33
+ Create instances from the audio files and their corresponding JSON annotations.
34
+ The data directory should contain:
35
+ - Audio files (e.g., .mp3)
36
+ - A JSON file with annotations containing 'answer' field
37
+ """
38
+ audio_save_dir = os.path.join(output_path, "audio_files")
39
+ os.makedirs(audio_save_dir, exist_ok=True)
40
+
41
+ print("Downloading SAA-Lab/SLPHelmUltraSuitePlus dataset...")
42
+ dataset = load_dataset("SAA-Lab/SLPHelmUltraSuitePlus")
43
+
44
+ instances: List[Instance] = []
45
+ split: str = TEST_SPLIT
46
+
47
+ # Find all pairs of audio and JSON files
48
+ for idx, row in enumerate(tqdm(dataset["train"])):
49
+
50
+ # Load the annotation
51
+ # Load the annotation
52
+ label = row["disorder_class"]
53
+
54
+ unique_id = str(idx)
55
+ local_audio_name = f"{label}_{unique_id}.mp3"
56
+ local_audio_path = os.path.join(audio_save_dir, local_audio_name)
57
+ ensure_audio_file_exists_from_array(local_audio_path, row["audio"]["array"], row["audio"]["sampling_rate"])
58
+
59
+ # Create references for each option
60
+ references: List[Reference] = [Reference(Output(text=row["transcription"]), tags=[CORRECT_TAG])]
61
+
62
+ # Create the input with audio and instruction
63
+ content = [
64
+ MediaObject(content_type="audio/mpeg", location=local_audio_path),
65
+ ]
66
+
67
+ input = Input(multimedia_content=MultimediaObject(content))
68
+ instances.append(Instance(input=input, references=references, split=split))
69
+
70
+ return instances