crfm-helm 0.5.5__tar.gz → 0.5.7__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.
- crfm_helm-0.5.7/PKG-INFO +434 -0
- crfm_helm-0.5.7/README.md +105 -0
- crfm_helm-0.5.7/setup.cfg +339 -0
- crfm_helm-0.5.7/src/crfm_helm.egg-info/PKG-INFO +434 -0
- crfm_helm-0.5.7/src/crfm_helm.egg-info/SOURCES.txt +981 -0
- crfm_helm-0.5.7/src/crfm_helm.egg-info/requires.txt +280 -0
- crfm_helm-0.5.7/src/helm/benchmark/adaptation/adapters/in_context_learning_adapter.py +326 -0
- crfm_helm-0.5.7/src/helm/benchmark/adaptation/adapters/test_adapter.py +21 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/air_bench_annotator.py +79 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/bigcodebench_annotator.py +108 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/bird_sql_annotator.py +58 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/chw_care_plan_annotator.py +93 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/ehr_sql_annotator.py +87 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/helpdesk_call_summarization_annotator.py +131 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/live_qa_annotator.py +76 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/mimic_bhc_annotator.py +100 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/model_as_judge.py +304 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/omni_math_annotator.py +131 -0
- crfm_helm-0.5.7/src/helm/benchmark/annotation/wildbench_annotator.py +119 -0
- crfm_helm-0.5.7/src/helm/benchmark/executor.py +122 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/aci_bench_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/bias_word_lists.py +860 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/chw_care_plan_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/classification_metrics.py +170 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/cleva_harms_metrics.py +237 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/codeinsights_code_efficiency_metrics.py +186 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/codeinsights_code_evaluation_metrics.py +477 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/codeinsights_correct_code_metrics.py +366 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/codeinsights_edge_case_metrics.py +92 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/codeinsights_metric_specs.py +51 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/comet_metric.py +125 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/conv_fin_qa_calc_metrics.py +72 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/copyright_metrics.py +180 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/decodingtrust_stereotype_bias_metrics.py +202 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/dischargeme_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/efficiency_metrics.py +213 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/evaluate_reference_metrics.py +520 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/gpt4_audio_refusal_metrics.py +145 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/ifeval_metrics.py +55 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/image_generation/clip_score_metrics.py +84 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/image_generation/fractal_dimension/fractal_dimension_util.py +63 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/kpi_edgar_metrics.py +121 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/llm_jury_metrics.py +46 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/lmkt_metric_specs.py +12 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/lmkt_metrics.py +47 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/med_dialog_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/medalign_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/medi_qa_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/medication_qa_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/melt_bias_metric.py +234 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/melt_bias_word_lists.py +1367 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/melt_metric_specs.py +43 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/melt_toxicity_metric.py +107 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/mental_health_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/metric_service.py +38 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/mimic_bhc_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/mimic_rrs_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/mtsamples_procedures_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/mtsamples_replicate_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/openai_mrcr_metrics.py +52 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/ruler_qa_metrics.py +34 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/starr_patient_instructions_metrics.py +14 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/summac/model_summac.py +457 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/summarization_metrics.py +409 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/tokens/test_openai_token_cost_estimator.py +61 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/toxicity_metrics.py +91 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/unitxt_metrics.py +107 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/vision_language/emd_utils.py +347 -0
- crfm_helm-0.5.7/src/helm/benchmark/metrics/vision_language/image_utils.py +100 -0
- crfm_helm-0.5.7/src/helm/benchmark/model_deployment_registry.py +214 -0
- crfm_helm-0.5.7/src/helm/benchmark/presentation/contamination.py +85 -0
- crfm_helm-0.5.7/src/helm/benchmark/presentation/create_plots.py +655 -0
- crfm_helm-0.5.7/src/helm/benchmark/presentation/run_display.py +319 -0
- crfm_helm-0.5.7/src/helm/benchmark/presentation/schema.py +291 -0
- crfm_helm-0.5.7/src/helm/benchmark/presentation/summarize.py +1355 -0
- crfm_helm-0.5.7/src/helm/benchmark/presentation/test_create_plots.py +36 -0
- crfm_helm-0.5.7/src/helm/benchmark/reeval_run.py +202 -0
- crfm_helm-0.5.7/src/helm/benchmark/reeval_runner.py +355 -0
- crfm_helm-0.5.7/src/helm/benchmark/run.py +381 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_expander.py +1619 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_spec_factory.py +180 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/arabic_run_specs.py +73 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/audio_run_specs.py +657 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/bluex_run_specs.py +40 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/classic_run_specs.py +1393 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/codeinsights_run_specs.py +192 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/enterprise_run_specs.py +280 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/experimental_run_specs.py +224 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/healthqa_br_run_specs.py +40 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/heim_run_specs.py +625 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/lmkt_run_specs.py +144 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/long_context_run_specs.py +188 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/medhelm_run_specs.py +1260 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/melt_run_specs.py +783 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/multilingual_run_specs.py +50 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/speech_disorder_audio_run_specs.py +163 -0
- crfm_helm-0.5.7/src/helm/benchmark/run_specs/vlm_run_specs.py +1057 -0
- crfm_helm-0.5.7/src/helm/benchmark/runner.py +348 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/aci_bench_scenario.py +126 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/alghafa_scenario.py +126 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/arabic_mmlu_scenario.py +78 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/aratrust_scenario.py +76 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/air_bench_chat_scenario.py +130 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/air_bench_foundation_scenario.py +154 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/casual_conversations2_scenario.py +152 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/corebench_scenario.py +77 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/mustard_scenario.py +142 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/ultra_suite_asr_classification_scenario.py +104 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/ultra_suite_asr_transcription_scenario.py +99 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/ultra_suite_classification_scenario.py +118 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/ultra_suite_disorder_breakdown_scenario.py +86 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/ultra_suite_disorder_symptoms_scenario.py +117 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/vocal_sound_scenario.py +83 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/audio_language/voxceleb2_scenario.py +105 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/autobencher_capabilities_scenario.py +68 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/bluex_scenario.py +66 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/chw_care_plan_scenario.py +106 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/clear_scenario.py +157 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/cleva_scenario.py +1606 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/codeinsights_code_efficiency_scenario.py +197 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/codeinsights_correct_code_scenario.py +78 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/codeinsights_edge_case_scenario.py +192 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/codeinsights_student_coding_scenario.py +162 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/codeinsights_student_mistake_scenario.py +188 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/dischargeme_scenario.py +172 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/ehr_sql_scenario.py +137 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/ehrshot_scenario.py +1519 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/exams_multilingual_scenario.py +115 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/grammar.py +183 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/headqa_scenario.py +136 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/healthqa_br_scenario.py +80 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/infinite_bench_en_mc_scenario.py +90 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/infinite_bench_en_qa_scenario.py +85 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/infinite_bench_en_sum_scenario.py +79 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/kpi_edgar_scenario.py +151 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/lmkt_scenarios.py +288 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/math_scenario.py +452 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/med_dialog_scenario.py +135 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medalign_scenario.py +94 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medalign_scenario_helper.py +326 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medbullets_scenario.py +145 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medcalc_bench_scenario.py +127 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medec_scenario.py +125 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medhallu_scenario.py +72 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medi_qa_scenario.py +111 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/medication_qa_scenario.py +66 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_ir_scenario.py +171 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_knowledge_scenario.py +246 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_lm_scenarios.py +252 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_scenarios.py +793 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_srn_scenario.py +342 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_synthetic_reasoning_scenario.py +222 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/melt_translation_scenario.py +152 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mental_health_scenario.py +123 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mimic_bhc_scenario.py +103 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mimic_rrs_scenario.py +98 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mimiciv_billing_code_scenario.py +77 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mmlu_pro_scenario.py +95 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mmmlu_scenario.py +85 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mtsamples_procedures_scenario.py +144 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/mtsamples_replicate_scenario.py +142 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/n2c2_ct_matching_scenario.py +277 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/openai_mrcr_scenario.py +79 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/pubmed_qa_scenario.py +188 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/race_based_med_scenario.py +152 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/ruler_qa_scenario_helper.py +171 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/ruler_qa_scenarios.py +88 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/seahelm_scenario.py +1947 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_bmt_scenario.py +75 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_cdi_scenario.py +75 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_conf_scenario.py +76 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_ent_scenario.py +77 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_gip_scenario.py +74 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_privacy_scenario.py +78 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_proxy_scenario.py +76 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_ptbm_scenario.py +81 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_sei_scenario.py +94 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/shc_sequoia_scenario.py +77 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/starr_patient_instructions_scenario.py +97 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_alghafa_scenario.py +29 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_aratrust_scenario.py +21 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_bluex_scenario.py +59 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_exams_multilingual_scenario.py +29 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_healtha_br_scenario.py +57 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_infinite_bench_en_qa_scenario.py +18 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/test_infinite_bench_en_sum_scenario.py +31 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/truthful_qa_scenario.py +156 -0
- crfm_helm-0.5.7/src/helm/benchmark/scenarios/vision_language/msr_vtt_scenario.py +75 -0
- crfm_helm-0.5.7/src/helm/benchmark/server.py +164 -0
- crfm_helm-0.5.7/src/helm/benchmark/slurm_jobs.py +101 -0
- crfm_helm-0.5.7/src/helm/benchmark/slurm_runner.py +370 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_arabic.yaml +228 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_audio.yaml +763 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_classic.yaml +2994 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_enterprise.yaml +319 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_long_context.yaml +301 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_medhelm.yaml +1140 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_melt.yaml +1257 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_slphelm.yaml +162 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_vhelm.yaml +933 -0
- crfm_helm-0.5.7/src/helm/benchmark/static/schema_video.yaml +219 -0
- crfm_helm-0.5.7/src/helm/benchmark/static_build/assets/index-b9779128.css +1 -0
- crfm_helm-0.5.7/src/helm/benchmark/static_build/assets/index-e439d5e1.js +10 -0
- crfm_helm-0.5.7/src/helm/benchmark/static_build/assets/medhelm-overview-eac29843.png +0 -0
- crfm_helm-0.5.7/src/helm/benchmark/static_build/assets/tremor-38a10867.js +10 -0
- crfm_helm-0.5.7/src/helm/benchmark/static_build/index.html +20 -0
- crfm_helm-0.5.7/src/helm/benchmark/window_services/encoder_decoder_window_service.py +44 -0
- crfm_helm-0.5.7/src/helm/benchmark/window_services/image_generation/clip_window_service.py +13 -0
- crfm_helm-0.5.7/src/helm/benchmark/window_services/test_utils.py +232 -0
- crfm_helm-0.5.7/src/helm/benchmark/window_services/tokenizer_service.py +25 -0
- crfm_helm-0.5.7/src/helm/clients/anthropic_client.py +768 -0
- crfm_helm-0.5.7/src/helm/clients/audio_language/diva_llama_client.py +120 -0
- crfm_helm-0.5.7/src/helm/clients/audio_language/qwen2_5_omni_client.py +209 -0
- crfm_helm-0.5.7/src/helm/clients/audio_language/qwen2_audiolm_client.py +190 -0
- crfm_helm-0.5.7/src/helm/clients/audio_language/qwen_audiolm_client.py +152 -0
- crfm_helm-0.5.7/src/helm/clients/audio_language/test.py +62 -0
- crfm_helm-0.5.7/src/helm/clients/bedrock_client.py +324 -0
- crfm_helm-0.5.7/src/helm/clients/client.py +222 -0
- crfm_helm-0.5.7/src/helm/clients/grok_client.py +36 -0
- crfm_helm-0.5.7/src/helm/clients/huggingface_client.py +388 -0
- crfm_helm-0.5.7/src/helm/clients/huggingface_pipeline_client.py +138 -0
- crfm_helm-0.5.7/src/helm/clients/image_generation/dalle_mini/model/configuration.py +175 -0
- crfm_helm-0.5.7/src/helm/clients/image_generation/dalle_mini/model/modeling.py +1834 -0
- crfm_helm-0.5.7/src/helm/clients/image_generation/dalle_mini/model/processor.py +63 -0
- crfm_helm-0.5.7/src/helm/clients/image_generation/dalle_mini/model/tokenizer.py +9 -0
- crfm_helm-0.5.7/src/helm/clients/openai_client.py +588 -0
- crfm_helm-0.5.7/src/helm/clients/openai_responses_client.py +176 -0
- crfm_helm-0.5.7/src/helm/clients/palmyra_client.py +162 -0
- crfm_helm-0.5.7/src/helm/clients/reka_client.py +189 -0
- crfm_helm-0.5.7/src/helm/clients/test_huggingface_client.py +86 -0
- crfm_helm-0.5.7/src/helm/clients/together_client.py +558 -0
- crfm_helm-0.5.7/src/helm/clients/vertexai_client.py +478 -0
- crfm_helm-0.5.7/src/helm/clients/vision_language/huggingface_vision2seq_client.py +147 -0
- crfm_helm-0.5.7/src/helm/clients/vision_language/huggingface_vlm_client.py +112 -0
- crfm_helm-0.5.7/src/helm/clients/vision_language/idefics_client.py +167 -0
- crfm_helm-0.5.7/src/helm/clients/vision_language/paligemma_client.py +146 -0
- crfm_helm-0.5.7/src/helm/clients/vision_language/qwen2_vlm_client.py +188 -0
- crfm_helm-0.5.7/src/helm/clients/vision_language/qwen_vlm_client.py +173 -0
- crfm_helm-0.5.7/src/helm/clients/vllm_client.py +80 -0
- crfm_helm-0.5.7/src/helm/clients/vllm_granite_thinking_client.py +56 -0
- crfm_helm-0.5.7/src/helm/clients/writer_client.py +102 -0
- crfm_helm-0.5.7/src/helm/common/context.py +80 -0
- crfm_helm-0.5.7/src/helm/common/credentials_utils.py +28 -0
- crfm_helm-0.5.7/src/helm/common/critique_request.py +99 -0
- crfm_helm-0.5.7/src/helm/common/general.py +348 -0
- crfm_helm-0.5.7/src/helm/common/hierarchical_logger.py +198 -0
- crfm_helm-0.5.7/src/helm/common/local_context.py +140 -0
- crfm_helm-0.5.7/src/helm/common/object_spec.py +136 -0
- crfm_helm-0.5.7/src/helm/common/remote_context.py +61 -0
- crfm_helm-0.5.7/src/helm/common/request.py +267 -0
- crfm_helm-0.5.7/src/helm/common/test_logging.py +94 -0
- crfm_helm-0.5.7/src/helm/config/model_deployments.yaml +4592 -0
- crfm_helm-0.5.7/src/helm/config/model_metadata.yaml +4792 -0
- crfm_helm-0.5.7/src/helm/config/tokenizer_configs.yaml +1187 -0
- crfm_helm-0.5.7/src/helm/proxy/cli.py +214 -0
- crfm_helm-0.5.7/src/helm/proxy/critique/mechanical_turk_utils.py +45 -0
- crfm_helm-0.5.7/src/helm/proxy/retry.py +98 -0
- crfm_helm-0.5.7/src/helm/proxy/services/server_service.py +172 -0
- crfm_helm-0.5.7/src/helm/tokenizers/grok_tokenizer.py +55 -0
- crfm_helm-0.5.7/src/helm/tokenizers/huggingface_tokenizer.py +169 -0
- crfm_helm-0.5.7/src/helm/tokenizers/test_grok_tokenizer.py +33 -0
- crfm_helm-0.5.5/PKG-INFO +0 -413
- crfm_helm-0.5.5/README.md +0 -104
- crfm_helm-0.5.5/setup.cfg +0 -315
- crfm_helm-0.5.5/src/crfm_helm.egg-info/PKG-INFO +0 -413
- crfm_helm-0.5.5/src/crfm_helm.egg-info/SOURCES.txt +0 -901
- crfm_helm-0.5.5/src/crfm_helm.egg-info/requires.txt +0 -253
- crfm_helm-0.5.5/src/helm/benchmark/adaptation/adapters/in_context_learning_adapter.py +0 -326
- crfm_helm-0.5.5/src/helm/benchmark/adaptation/adapters/test_adapter.py +0 -21
- crfm_helm-0.5.5/src/helm/benchmark/annotation/air_bench_annotator.py +0 -79
- crfm_helm-0.5.5/src/helm/benchmark/annotation/bigcodebench_annotator.py +0 -108
- crfm_helm-0.5.5/src/helm/benchmark/annotation/bird_sql_annotator.py +0 -58
- crfm_helm-0.5.5/src/helm/benchmark/annotation/chw_care_plan_annotator.py +0 -98
- crfm_helm-0.5.5/src/helm/benchmark/annotation/ehr_sql_annotator.py +0 -87
- crfm_helm-0.5.5/src/helm/benchmark/annotation/helpdesk_call_summarization_annotator.py +0 -131
- crfm_helm-0.5.5/src/helm/benchmark/annotation/live_qa_annotator.py +0 -76
- crfm_helm-0.5.5/src/helm/benchmark/annotation/model_as_judge.py +0 -308
- crfm_helm-0.5.5/src/helm/benchmark/annotation/omni_math_annotator.py +0 -132
- crfm_helm-0.5.5/src/helm/benchmark/annotation/wildbench_annotator.py +0 -119
- crfm_helm-0.5.5/src/helm/benchmark/executor.py +0 -123
- crfm_helm-0.5.5/src/helm/benchmark/metrics/aci_bench_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/bias_word_lists.py +0 -860
- crfm_helm-0.5.5/src/helm/benchmark/metrics/chw_care_plan_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/classification_metrics.py +0 -170
- crfm_helm-0.5.5/src/helm/benchmark/metrics/cleva_harms_metrics.py +0 -237
- crfm_helm-0.5.5/src/helm/benchmark/metrics/comet_metric.py +0 -125
- crfm_helm-0.5.5/src/helm/benchmark/metrics/conv_fin_qa_calc_metrics.py +0 -72
- crfm_helm-0.5.5/src/helm/benchmark/metrics/copyright_metrics.py +0 -180
- crfm_helm-0.5.5/src/helm/benchmark/metrics/decodingtrust_stereotype_bias_metrics.py +0 -202
- crfm_helm-0.5.5/src/helm/benchmark/metrics/dischargeme_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/efficiency_metrics.py +0 -213
- crfm_helm-0.5.5/src/helm/benchmark/metrics/evaluate_reference_metrics.py +0 -520
- crfm_helm-0.5.5/src/helm/benchmark/metrics/ifeval_metrics.py +0 -55
- crfm_helm-0.5.5/src/helm/benchmark/metrics/image_generation/clip_score_metrics.py +0 -73
- crfm_helm-0.5.5/src/helm/benchmark/metrics/image_generation/fractal_dimension/fractal_dimension_util.py +0 -63
- crfm_helm-0.5.5/src/helm/benchmark/metrics/med_dialog_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/medalign_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/medi_qa_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/medication_qa_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/mental_health_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/metric_service.py +0 -38
- crfm_helm-0.5.5/src/helm/benchmark/metrics/mimic_rrs_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/mtsamples_procedures_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/mtsamples_replicate_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/numeracy_metrics.py +0 -72
- crfm_helm-0.5.5/src/helm/benchmark/metrics/starr_patient_instructions_metrics.py +0 -34
- crfm_helm-0.5.5/src/helm/benchmark/metrics/summac/model_summac.py +0 -458
- crfm_helm-0.5.5/src/helm/benchmark/metrics/summarization_metrics.py +0 -408
- crfm_helm-0.5.5/src/helm/benchmark/metrics/test_numeracy_metrics.py +0 -95
- crfm_helm-0.5.5/src/helm/benchmark/metrics/tokens/test_openai_token_cost_estimator.py +0 -61
- crfm_helm-0.5.5/src/helm/benchmark/metrics/toxicity_metrics.py +0 -91
- crfm_helm-0.5.5/src/helm/benchmark/metrics/unitxt_metrics.py +0 -108
- crfm_helm-0.5.5/src/helm/benchmark/metrics/vision_language/emd_utils.py +0 -345
- crfm_helm-0.5.5/src/helm/benchmark/metrics/vision_language/image_utils.py +0 -100
- crfm_helm-0.5.5/src/helm/benchmark/model_deployment_registry.py +0 -224
- crfm_helm-0.5.5/src/helm/benchmark/presentation/contamination.py +0 -85
- crfm_helm-0.5.5/src/helm/benchmark/presentation/create_plots.py +0 -625
- crfm_helm-0.5.5/src/helm/benchmark/presentation/run_display.py +0 -306
- crfm_helm-0.5.5/src/helm/benchmark/presentation/schema.py +0 -285
- crfm_helm-0.5.5/src/helm/benchmark/presentation/summarize.py +0 -1332
- crfm_helm-0.5.5/src/helm/benchmark/presentation/test_create_plots.py +0 -33
- crfm_helm-0.5.5/src/helm/benchmark/reeval_run.py +0 -203
- crfm_helm-0.5.5/src/helm/benchmark/reeval_runner.py +0 -355
- crfm_helm-0.5.5/src/helm/benchmark/run.py +0 -370
- crfm_helm-0.5.5/src/helm/benchmark/run_expander.py +0 -1608
- crfm_helm-0.5.5/src/helm/benchmark/run_spec_factory.py +0 -179
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/audio_run_specs.py +0 -613
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/classic_run_specs.py +0 -1446
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/enterprise_run_specs.py +0 -260
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/experimental_run_specs.py +0 -194
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/heim_run_specs.py +0 -623
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/long_context_run_specs.py +0 -89
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/medhelm_run_specs.py +0 -1155
- crfm_helm-0.5.5/src/helm/benchmark/run_specs/vlm_run_specs.py +0 -1029
- crfm_helm-0.5.5/src/helm/benchmark/runner.py +0 -348
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/aci_bench_scenario.py +0 -120
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/audio_language/air_bench_chat_scenario.py +0 -128
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/audio_language/air_bench_foundation_scenario.py +0 -154
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/audio_language/casual_conversations2_scenario.py +0 -152
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/audio_language/mustard_scenario.py +0 -142
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/audio_language/vocal_sound_scenario.py +0 -69
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/audio_language/voxceleb2_scenario.py +0 -106
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/autobencher_capabilities_scenario.py +0 -68
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/chw_care_plan_scenario.py +0 -105
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/clear_scenario.py +0 -153
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/cleva_scenario.py +0 -1606
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/dischargeme_scenario.py +0 -157
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/ehr_sql_scenario.py +0 -131
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/ehrshot_scenario.py +0 -1546
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/grammar.py +0 -183
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/headqa_scenario.py +0 -131
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/infinite_bench_sum_scenario.py +0 -82
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/math_scenario.py +0 -451
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/med_dialog_scenario.py +0 -130
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medalign_scenario.py +0 -88
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medalign_scenario_helper.py +0 -429
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medbullets_scenario.py +0 -140
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medcalc_bench_scenario.py +0 -125
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medec_scenario.py +0 -120
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medhallu_scenario.py +0 -66
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medi_qa_scenario.py +0 -105
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/medication_qa_scenario.py +0 -60
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mental_health_scenario.py +0 -112
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mimic_bhc_scenario.py +0 -98
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mimic_rrs_scenario.py +0 -89
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mimiciv_billing_code_scenario.py +0 -71
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mmlu_pro_scenario.py +0 -95
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mtsamples_procedures_scenario.py +0 -141
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/mtsamples_replicate_scenario.py +0 -141
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/n2c2_ct_matching_scenario.py +0 -271
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/numeracy_scenario.py +0 -793
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/pubmed_qa_scenario.py +0 -183
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/race_based_med_scenario.py +0 -142
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/ruler_qa_scenario_helper.py +0 -171
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/ruler_qa_scenarios.py +0 -88
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/seahelm_scenario.py +0 -1947
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_bmt_scenario.py +0 -69
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_cdi_scenario.py +0 -70
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_conf_scenario.py +0 -70
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_ent_scenario.py +0 -72
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_gip_scenario.py +0 -66
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_ptbm_scenario.py +0 -76
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_sei_scenario.py +0 -89
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/shc_sequoia_scenario.py +0 -69
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/starr_patient_instructions_scenario.py +0 -90
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/test_infinite_bench_sum_scenario.py +0 -46
- crfm_helm-0.5.5/src/helm/benchmark/scenarios/truthful_qa_scenario.py +0 -155
- crfm_helm-0.5.5/src/helm/benchmark/server.py +0 -163
- crfm_helm-0.5.5/src/helm/benchmark/slurm_jobs.py +0 -102
- crfm_helm-0.5.5/src/helm/benchmark/slurm_runner.py +0 -363
- crfm_helm-0.5.5/src/helm/benchmark/static/schema_audio.yaml +0 -752
- crfm_helm-0.5.5/src/helm/benchmark/static/schema_classic.yaml +0 -3011
- crfm_helm-0.5.5/src/helm/benchmark/static/schema_enterprise.yaml +0 -298
- crfm_helm-0.5.5/src/helm/benchmark/static/schema_long_context.yaml +0 -240
- crfm_helm-0.5.5/src/helm/benchmark/static/schema_medhelm.yaml +0 -1081
- crfm_helm-0.5.5/src/helm/benchmark/static/schema_vhelm.yaml +0 -933
- crfm_helm-0.5.5/src/helm/benchmark/static_build/assets/index-262903c1.js +0 -10
- crfm_helm-0.5.5/src/helm/benchmark/static_build/assets/index-42060d71.css +0 -1
- crfm_helm-0.5.5/src/helm/benchmark/static_build/assets/tremor-9cefc3c5.js +0 -10
- crfm_helm-0.5.5/src/helm/benchmark/static_build/index.html +0 -20
- crfm_helm-0.5.5/src/helm/benchmark/window_services/encoder_decoder_window_service.py +0 -44
- crfm_helm-0.5.5/src/helm/benchmark/window_services/image_generation/clip_window_service.py +0 -15
- crfm_helm-0.5.5/src/helm/benchmark/window_services/test_utils.py +0 -233
- crfm_helm-0.5.5/src/helm/benchmark/window_services/tokenizer_service.py +0 -26
- crfm_helm-0.5.5/src/helm/clients/anthropic_client.py +0 -728
- crfm_helm-0.5.5/src/helm/clients/audio_language/diva_llama_client.py +0 -118
- crfm_helm-0.5.5/src/helm/clients/audio_language/qwen2_audiolm_client.py +0 -188
- crfm_helm-0.5.5/src/helm/clients/audio_language/qwen_audiolm_client.py +0 -150
- crfm_helm-0.5.5/src/helm/clients/bedrock_client.py +0 -322
- crfm_helm-0.5.5/src/helm/clients/client.py +0 -222
- crfm_helm-0.5.5/src/helm/clients/huggingface_client.py +0 -349
- crfm_helm-0.5.5/src/helm/clients/image_generation/dalle_mini/model/configuration.py +0 -175
- crfm_helm-0.5.5/src/helm/clients/image_generation/dalle_mini/model/modeling.py +0 -1834
- crfm_helm-0.5.5/src/helm/clients/image_generation/dalle_mini/model/processor.py +0 -63
- crfm_helm-0.5.5/src/helm/clients/image_generation/dalle_mini/model/tokenizer.py +0 -9
- crfm_helm-0.5.5/src/helm/clients/openai_client.py +0 -541
- crfm_helm-0.5.5/src/helm/clients/palmyra_client.py +0 -165
- crfm_helm-0.5.5/src/helm/clients/reka_client.py +0 -189
- crfm_helm-0.5.5/src/helm/clients/test_huggingface_client.py +0 -86
- crfm_helm-0.5.5/src/helm/clients/together_client.py +0 -533
- crfm_helm-0.5.5/src/helm/clients/vertexai_client.py +0 -470
- crfm_helm-0.5.5/src/helm/clients/vision_language/huggingface_vision2seq_client.py +0 -145
- crfm_helm-0.5.5/src/helm/clients/vision_language/huggingface_vlm_client.py +0 -112
- crfm_helm-0.5.5/src/helm/clients/vision_language/idefics_client.py +0 -163
- crfm_helm-0.5.5/src/helm/clients/vision_language/paligemma_client.py +0 -146
- crfm_helm-0.5.5/src/helm/clients/vision_language/qwen2_vlm_client.py +0 -175
- crfm_helm-0.5.5/src/helm/clients/vision_language/qwen_vlm_client.py +0 -171
- crfm_helm-0.5.5/src/helm/clients/vllm_client.py +0 -44
- crfm_helm-0.5.5/src/helm/common/credentials_utils.py +0 -28
- crfm_helm-0.5.5/src/helm/common/critique_request.py +0 -100
- crfm_helm-0.5.5/src/helm/common/general.py +0 -341
- crfm_helm-0.5.5/src/helm/common/hierarchical_logger.py +0 -106
- crfm_helm-0.5.5/src/helm/common/object_spec.py +0 -121
- crfm_helm-0.5.5/src/helm/common/request.py +0 -259
- crfm_helm-0.5.5/src/helm/config/model_deployments.yaml +0 -3642
- crfm_helm-0.5.5/src/helm/config/model_metadata.yaml +0 -4071
- crfm_helm-0.5.5/src/helm/config/tokenizer_configs.yaml +0 -966
- crfm_helm-0.5.5/src/helm/proxy/cli.py +0 -212
- crfm_helm-0.5.5/src/helm/proxy/critique/mechanical_turk_utils.py +0 -45
- crfm_helm-0.5.5/src/helm/proxy/retry.py +0 -93
- crfm_helm-0.5.5/src/helm/proxy/services/server_service.py +0 -236
- crfm_helm-0.5.5/src/helm/tokenizers/huggingface_tokenizer.py +0 -169
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/LICENSE +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/MANIFEST.in +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/docs/tutorial.md +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/pyproject.toml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/crfm_helm.egg-info/dependency_links.txt +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/crfm_helm.egg-info/entry_points.txt +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/crfm_helm.egg-info/not-zip-safe +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/crfm_helm.egg-info/top_level.txt +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapter_spec.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/adapter_factory.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/binary_ranking_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/chat_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/ehr_instruction_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/generation_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/language_modeling_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/generation_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/in_context_learning_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/multimodal_prompt.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multiple_choice_calibrated_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_chain_of_thought_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/multiple_choice_separate_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/test_generation_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/test_language_modeling_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/adapters/test_multiple_choice_joint_adapter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/common_adapter_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/prompt.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/request_state.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/adaptation/scenario_state.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/aci_bench_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/annotator_factory.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/anthropic_red_team_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/autobencher_capabilities_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/autobencher_safety_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/call_center_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/czech_bank_qa_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/dischargeme_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/financebench_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/harm_bench_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/image2struct/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/image2struct/image_compiler_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/image2struct/latex_compiler_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/image2struct/lilypond_compiler_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/image2struct/webpage_compiler_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/med_dialog_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/medalign_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/medi_qa_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/medication_qa_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/mental_health_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/mimic_rrs_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/mtsamples_procedures_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/mtsamples_replicate_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/omni_math/gpt_evaluation_template.txt +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/omni_math/gpt_evaluation_zero_shot_template.txt +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/simple_safety_tests_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/spider_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/starr_patient_instructions_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/test_annotator_factory.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/test_dummy_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/wildbench/eval_template.pairwise.v2.md +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/wildbench/eval_template.score.v2.md +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation/xstest_annotator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/annotation_executor.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/cleva_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/contraction_expansion_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/contrast_sets_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/correct_to_misspelling.json +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/data_augmenter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/dialect_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/extra_space_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/filler_words_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/gender_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/lowercase_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/mild_mix_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/misspelling_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/person_name_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/perturbation_description.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/space_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/suffix_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/synonym_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/test_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/translate_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/augmentations/typos_perturbation.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/config_registry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/data_preprocessor.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/efficiency_data/training_efficiency.json +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/huggingface_registration.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/air_bench_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/annotation_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/basic_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/bbq_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/bias_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/bigcodebench_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/bird_sql_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/cleva_accuracy_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/cleva_metrics_helper.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/code_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/code_metrics_helper.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/common_metric_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/czech_bank_qa_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/decodingtrust_fairness_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/decodingtrust_ood_knowledge_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/decodingtrust_privacy_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/disinformation_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/dry_run_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ehr_sql_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/evaluate_instances_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/fin_qa_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/fin_qa_metrics_helper.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/gpqa_chain_of_thought_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/gpt4_audio_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/helpdesk_call_summarization_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ifeval/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ifeval/instructions.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ifeval/instructions_registry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ifeval/instructions_registry.pyi +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ifeval/instructions_util.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/aesthetics_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/aesthetics_scorer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/denoised_runtime_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/detection_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/detectors/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/detectors/base_detector.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/detectors/vitdet.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/efficiency_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/fidelity_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/fractal_dimension/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/fractal_dimension/test_fractal_dimension_util.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/fractal_dimension_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/gender_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/image_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/lpips_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/multi_scale_ssim_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/nsfw_detector.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/nsfw_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/nudity_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/photorealism_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/psnr_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/q16/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/q16/q16_toxicity_detector.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/q16/test_q16.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/q16_toxicity_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/skin_tone_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/uiqi_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/watermark/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/watermark/test_watermark_detector.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/watermark/watermark_detector.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/image_generation/watermark_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/instruction_following_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/language_modeling_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/live_qa_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/machine_translation_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/medcalc_bench_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/medec_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/metric_name.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/mimiciv_billing_code_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/nltk_helper.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/omni_math_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/output_processing_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/output_processors.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/paraphrase_generation_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/ranking_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/reference_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/reka_vibe_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/safety_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/seahelm_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/seahelm_metrics_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/spider_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/statistic.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/summac/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/summac/utils_misc.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/summarization_critique_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/test_bias_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/test_classification_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/test_disinformation_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/test_evaluate_reference_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/test_metric.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/test_statistic.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/ai21_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/auto_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/cohere_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/free_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/gooseai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/openai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/test_ai21_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/tokens/token_cost_estimator.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/toxicity_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/vision_language/image_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/metrics/wildbench_metrics.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/model_metadata_registry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/multi_gpu_runner.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/run_entry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/table.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/test_contamination.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/test_run_entry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/test_schema.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/test_summarize.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/presentation/torr_robustness_summarizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_spec.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/air_bench_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/call_center_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/capabilities_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/cleva_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/decodingtrust_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/enem_challenge_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/finance_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/imdb_ptbr_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/instruction_following_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/lite_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/mmlu_clinical_afr_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/oab_exams_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/safety_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/seahelm_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/simple_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/sql_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/tweetsentbr_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/unitxt_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/run_specs/winogrande_afr_run_specs.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/runner_config_registry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/air_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/anthropic_red_team_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/ami_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/audio_mnist_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/audio_pairs_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/audiocaps_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/common_voice_15_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/covost2_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/fleurs_fairness_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/fleurs_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/iemocap_audio_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/librispeech_fairness_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/librispeech_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/meld_audio_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/multilingual_librispeech_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/mutox_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/parade_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/speech_robust_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/audio_language/voice_jailbreak_attacks_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/autobencher_safety_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/babi_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/banking77_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/bbq_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/big_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/bigcodebench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/bird_sql_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/bird_sql_scenario_helper.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/blimp_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/bold_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/boolq_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/call_center_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/casehold_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/ci_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/civil_comments_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/code_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/code_scenario_apps_pinned_file_order.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/code_scenario_helper.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/commonsense_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/conv_fin_qa_calc_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/copyright_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/covid_dialog_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/cti_to_mitre_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/custom_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/czech_bank_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_adv_demonstration_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_adv_robustness_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_fairness_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_machine_ethics_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_ood_robustness_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_privacy_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_stereotype_bias_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/decodingtrust_toxicity_prompts_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/dialogue_scenarios.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/disinformation_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/dyck_language_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/echr_judgment_classification_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/enem_challenge_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/entity_data_imputation_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/entity_matching_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/ewok_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/fin_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/financebench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/financial_phrasebank_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/gold_commodity_news_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/gpqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/grammar_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/gsm_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/harm_bench_gcg_transfer_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/harm_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/helpdesk_call_summarization_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/ice_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/ice_scenario_pinned_file_order.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/ifeval_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/common_syntactic_processes_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/cub200_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/daily_dalle_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/demographic_stereotypes_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/detection_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/draw_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/i2p_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/landing_page_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/logos_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/magazine_cover_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/mental_disorders_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/mscoco_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/paint_skills_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/parti_prompts_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/radiology_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/relational_understanding_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/time_most_significant_historical_figures_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/image_generation/winoground_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/imdb_ptbr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/imdb_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/imdb_scenario_pinned_file_order.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/interactive_qa_mmlu_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/koala_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/legal_contract_summarization_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/legal_opinion_sentiment_classification_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/legal_summarization_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/legal_support_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/legalbench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/lex_glue_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/lextreme_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/live_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/lm_entry_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/lsat_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/me_q_sum_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/med_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/med_paragraph_simplification_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/med_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/mmlu_clinical_afr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/mmlu_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/msmarco_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/narrativeqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/natural_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/newsqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/oab_exams_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/omni_math_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/open_assistant_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/opinions_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/quac_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/raft_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/real_toxicity_prompts_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/self_instruct_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/simple_safety_tests_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/simple_scenarios.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/spider_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/summarization_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/sumosum_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_air_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_bigcodebench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_commonsense_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_czech_bank_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_enem_challenge_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_ewok_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_financebench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_gold_commodity_news_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_gpqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_grammar.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_gsm_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_ifeval_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_imdb_ptbr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_legalbench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_math_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_med_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_mmlu_clinical_afr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_mmlu_pro_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_mmlu_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_narrativeqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_oab_exams_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_omni_math_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_simple_scenarios.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_tweetsentbr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_wildbench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/test_winogrande_afr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/thai_exam_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/the_pile_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/tweetsentbr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/twitter_aae_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/unitxt_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/verifiability_judgment_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vicuna_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/a_okvqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/bingo_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/blink_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/crossmodal_3600_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/exams_v_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/fair_face_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/flickr30k_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/gqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/hateful_memes_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/heim_human_eval_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/chart2csv_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/image2struct_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/latex_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/musicsheet_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/utils_latex.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/driver.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/jekyll_server.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage/utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/image2struct/webpage_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/math_vista_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mementos_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mm_safety_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mm_star_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mme_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mmmu_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mscoco_captioning_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/mscoco_categorization_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/multipanelvqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/originality_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/pairs_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/pope_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/real_world_qa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/vqa_rad_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/vision_language/vqa_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/wikifact_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/wikitext_103_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/wildbench_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/winogrande_afr_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/wmt_14_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/scenarios/xstest_scenario.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/contamination.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_air_bench.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_autobencher.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_call_center.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_capabilities.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_cleva.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_czech_bank.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_decodingtrust.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_enem_challenge.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_ewok.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_finance.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_heim.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_image2struct.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_instruction_following.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_legal.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_lite.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_mmlu.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_mmlu_winogrande_afr.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_safety.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_seahelm.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_social_audio.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_sql.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_thai.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_torr.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_tweetsentbr.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_unitxt.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static/schema_vhelm_lite.yaml +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/crfm-logo-74391ab8.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/helm-safety-2907a7b6.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png +0 -0
- /crfm_helm-0.5.5/src/helm/benchmark/static_build/assets/medhelm-overview-3ddfcd65.png → /crfm_helm-0.5.7/src/helm/benchmark/static_build/assets/medhelm-v1-overview-3ddfcd65.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/overview-74aea3d8.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/react-f82877fd.js +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/recharts-4037aff0.js +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/vhelm-aspects-1437d673.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/vhelm-framework-a1ca3f3f.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/assets/vhelm-model-8afb7616.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/static_build/config.js +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/test_data_preprocessor.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/test_run_expander.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/tokenizer_config_registry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/default_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/ice_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/image_generation/lexica_search_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/image_generation/openai_dalle_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/image_generation/test_clip_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/image_generation/test_openai_dalle_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/local_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/no_decoding_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_anthropic_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_bloom_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_flan_t5_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_gpt2_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_gpt4_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_gptj_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_gptneox_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_openai_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_opt_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_palmyra_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_t0pp_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_t511b_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_ul2_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/test_yalm_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/window_service_factory.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/benchmark/window_services/yalm_window_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/ai21_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/ai21_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/aleph_alpha_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/audio_language/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/audio_language/llama_omni_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/auto_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/azure_openai_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/bedrock_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/clip_score_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/clip_scorers/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/clip_scorers/base_clip_scorer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/clip_scorers/clip_scorer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/clip_scorers/multilingual_clip_scorer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/cohere_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/cohere_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/gcs_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/google_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/google_translate_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/http_model_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/ibm_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/adobe_vision_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/aleph_alpha_image_generation_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/coglm_strategy.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/coglm_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/direct_sr.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_model.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_sampling.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/iterative_sr.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_model.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_sampling.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2/sr_pipeline/sr_group.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/cogview2_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle2_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle3_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/data.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/model/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/model/partitions.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/model/text.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/model/utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/configuration_vqgan.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/convert_pt_model_to_jax.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/modeling_flax_vqgan.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/dalle_mini_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/deep_floyd_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/huggingface_diffusers_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/image_generation_client_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/lexica_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/stage1/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/stage1/layers.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/stage1/vqgan.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/stage2/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/stage2/layers.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/stage2/transformer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/models/tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/utils/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/utils/config.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/utils/sampling.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle/utils/utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/mindalle_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/nudity_check_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/image_generation/together_image_generation_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/lit_gpt_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/lit_gpt_generate.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/megatron_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/mistral_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/moderation_api_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/nvidia_nim_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/open_lm_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/perspective_api_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/simple_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/stanfordhealthcare_azure_openai_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/stanfordhealthcare_claude_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/stanfordhealthcare_google_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/stanfordhealthcare_http_model_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/stanfordhealthcare_openai_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/stanfordhealthcare_shc_openai_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/test_auto_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/test_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/test_simple_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/test_together_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/toxicity_classifier_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/upstage_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/src/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/src/factory.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/src/flamingo.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/src/flamingo_lm.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/src/helpers.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo/src/utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/open_flamingo_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/vision_language/palmyra_vision_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/clients/yi_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/audio_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/authentication.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/cache.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/cache_backend_config.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/clip_score_request.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/codec.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/concurrency.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/file_caches/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/file_caches/file_cache.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/file_caches/local_file_cache.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/file_caches/test_local_file_cache.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/file_upload_request.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/gpu_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/image_generation_parameters.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/images_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/key_value_store.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/media_object.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/moderations_api_request.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/mongo_key_value_store.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/multimodal_request_utils.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/nudity_check_request.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/optional_dependencies.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/perspective_api_request.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/reeval_parameters.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/response_format.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/test_cache.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/test_codec.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/test_general.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/test_media_object.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/common/tokenization_request.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/config/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/accounts.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/critique_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/mechanical_turk_critique_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/mechanical_turk_critique_exporter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/mechanical_turk_critique_importer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/model_critique_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/scale_critique_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/critique/surge_ai_critique_client.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/example_queries.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/query.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/server.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/services/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/services/remote_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/services/service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/services/test_remote_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/services/test_service.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/static/general.js +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/static/help.html +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/static/index.css +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/static/index.html +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/static/index.js +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/static/info-icon.png +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/test_accounts.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/test_retry.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/token_counters/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/token_counters/auto_token_counter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/token_counters/test_auto_token_counter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/proxy/token_counters/token_counter.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/py.typed +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/ai21_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/aleph_alpha_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/auto_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/caching_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/cohere_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/http_model_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/lit_gpt_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/simple_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/test_ai21_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/test_anthropic_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/test_cohere_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/test_huggingface_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/test_simple_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/test_yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/tiktoken_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/vertexai_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/yalm_tokenizer_data/__init__.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/yalm_tokenizer_data/test_yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/yalm_tokenizer_data/voc_100b.sp +0 -0
- {crfm_helm-0.5.5 → crfm_helm-0.5.7}/src/helm/tokenizers/yalm_tokenizer_data/yalm_tokenizer.py +0 -0
crfm_helm-0.5.7/PKG-INFO
ADDED
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: crfm-helm
|
|
3
|
+
Version: 0.5.7
|
|
4
|
+
Summary: Benchmark for language models
|
|
5
|
+
Home-page: https://github.com/stanford-crfm/helm
|
|
6
|
+
Author: Stanford CRFM
|
|
7
|
+
Author-email: contact-crfm@stanford.edu
|
|
8
|
+
License: Apache License 2.0
|
|
9
|
+
Keywords: language models benchmarking
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
License-File: LICENSE
|
|
19
|
+
Requires-Dist: cattrs~=22.2
|
|
20
|
+
Requires-Dist: colorlog~=6.9
|
|
21
|
+
Requires-Dist: dacite~=1.6
|
|
22
|
+
Requires-Dist: importlib-resources~=5.10
|
|
23
|
+
Requires-Dist: Mako~=1.2
|
|
24
|
+
Requires-Dist: numpy<3,>=1.26
|
|
25
|
+
Requires-Dist: pandas~=2.0
|
|
26
|
+
Requires-Dist: pyhocon~=0.3.59
|
|
27
|
+
Requires-Dist: retrying~=1.3
|
|
28
|
+
Requires-Dist: spacy~=3.5
|
|
29
|
+
Requires-Dist: tqdm~=4.64
|
|
30
|
+
Requires-Dist: zstandard~=0.18.0
|
|
31
|
+
Requires-Dist: sqlitedict<3.0,>=2.1.0
|
|
32
|
+
Requires-Dist: bottle~=0.12.23
|
|
33
|
+
Requires-Dist: datasets~=3.1
|
|
34
|
+
Requires-Dist: pyarrow>=11.0.0
|
|
35
|
+
Requires-Dist: pyarrow-hotfix~=0.6
|
|
36
|
+
Requires-Dist: nltk!=3.9.0,~=3.7
|
|
37
|
+
Requires-Dist: rouge-score~=0.1.2
|
|
38
|
+
Requires-Dist: scipy>=1.10
|
|
39
|
+
Requires-Dist: uncertainty-calibration~=0.1.4
|
|
40
|
+
Requires-Dist: scikit-learn>=1.1
|
|
41
|
+
Requires-Dist: transformers<4.53.0,~=4.40
|
|
42
|
+
Requires-Dist: torch<3.0.0,>=1.13.1
|
|
43
|
+
Requires-Dist: torchvision<3.0.0,>=0.14.1
|
|
44
|
+
Provides-Extra: proxy-server
|
|
45
|
+
Requires-Dist: gunicorn>=20.1; extra == "proxy-server"
|
|
46
|
+
Provides-Extra: human-evaluation
|
|
47
|
+
Requires-Dist: scaleapi~=2.13; extra == "human-evaluation"
|
|
48
|
+
Requires-Dist: surge-api~=1.1; extra == "human-evaluation"
|
|
49
|
+
Provides-Extra: scenarios
|
|
50
|
+
Requires-Dist: gdown~=5.1; extra == "scenarios"
|
|
51
|
+
Requires-Dist: xlrd~=2.0; extra == "scenarios"
|
|
52
|
+
Provides-Extra: metrics
|
|
53
|
+
Requires-Dist: google-api-python-client~=2.64; extra == "metrics"
|
|
54
|
+
Requires-Dist: numba~=0.56; extra == "metrics"
|
|
55
|
+
Requires-Dist: sacrebleu~=2.2; extra == "metrics"
|
|
56
|
+
Requires-Dist: langdetect~=1.0; extra == "metrics"
|
|
57
|
+
Requires-Dist: immutabledict~=4.2; extra == "metrics"
|
|
58
|
+
Requires-Dist: gradio_client~=1.3; extra == "metrics"
|
|
59
|
+
Provides-Extra: ranking
|
|
60
|
+
Requires-Dist: pytrec_eval==0.5; extra == "ranking"
|
|
61
|
+
Provides-Extra: summarization
|
|
62
|
+
Requires-Dist: summ-eval~=0.892; extra == "summarization"
|
|
63
|
+
Requires-Dist: bert-score~=0.3; extra == "summarization"
|
|
64
|
+
Provides-Extra: plots
|
|
65
|
+
Requires-Dist: colorcet~=3.0; extra == "plots"
|
|
66
|
+
Requires-Dist: matplotlib>=3.6.0; extra == "plots"
|
|
67
|
+
Requires-Dist: seaborn>=0.11.0; extra == "plots"
|
|
68
|
+
Provides-Extra: decodingtrust
|
|
69
|
+
Requires-Dist: fairlearn~=0.9.0; extra == "decodingtrust"
|
|
70
|
+
Provides-Extra: slurm
|
|
71
|
+
Requires-Dist: simple-slurm~=0.2.6; extra == "slurm"
|
|
72
|
+
Provides-Extra: cleva
|
|
73
|
+
Requires-Dist: unidecode~=1.3; extra == "cleva"
|
|
74
|
+
Requires-Dist: pypinyin~=0.49.0; extra == "cleva"
|
|
75
|
+
Requires-Dist: jieba~=0.42.1; extra == "cleva"
|
|
76
|
+
Requires-Dist: opencc~=1.1; extra == "cleva"
|
|
77
|
+
Requires-Dist: langdetect~=1.0; extra == "cleva"
|
|
78
|
+
Provides-Extra: images
|
|
79
|
+
Requires-Dist: crfm-helm[accelerate]; extra == "images"
|
|
80
|
+
Requires-Dist: pillow~=10.2; extra == "images"
|
|
81
|
+
Provides-Extra: mongo
|
|
82
|
+
Requires-Dist: pymongo~=4.2; extra == "mongo"
|
|
83
|
+
Provides-Extra: unitxt
|
|
84
|
+
Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
|
|
85
|
+
Provides-Extra: seahelm
|
|
86
|
+
Requires-Dist: pythainlp==5.0.0; extra == "seahelm"
|
|
87
|
+
Requires-Dist: pyonmttok==1.37.0; extra == "seahelm"
|
|
88
|
+
Requires-Dist: sacrebleu~=2.2; extra == "seahelm"
|
|
89
|
+
Requires-Dist: python-crfsuite~=0.9.11; extra == "seahelm"
|
|
90
|
+
Provides-Extra: accelerate
|
|
91
|
+
Requires-Dist: accelerate~=0.25; extra == "accelerate"
|
|
92
|
+
Provides-Extra: aleph-alpha
|
|
93
|
+
Requires-Dist: aleph-alpha-client~=2.14; extra == "aleph-alpha"
|
|
94
|
+
Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
|
|
95
|
+
Provides-Extra: allenai
|
|
96
|
+
Requires-Dist: ai2-olmo~=0.2; extra == "allenai"
|
|
97
|
+
Provides-Extra: amazon
|
|
98
|
+
Requires-Dist: boto3~=1.34; extra == "amazon"
|
|
99
|
+
Requires-Dist: awscli~=1.33; extra == "amazon"
|
|
100
|
+
Requires-Dist: botocore~=1.34; extra == "amazon"
|
|
101
|
+
Provides-Extra: anthropic
|
|
102
|
+
Requires-Dist: anthropic~=0.48; extra == "anthropic"
|
|
103
|
+
Requires-Dist: websocket-client~=1.3; extra == "anthropic"
|
|
104
|
+
Requires-Dist: httpx<0.28.0; extra == "anthropic"
|
|
105
|
+
Provides-Extra: cohere
|
|
106
|
+
Requires-Dist: cohere~=5.3; extra == "cohere"
|
|
107
|
+
Provides-Extra: writer
|
|
108
|
+
Requires-Dist: writerai~=4.0; extra == "writer"
|
|
109
|
+
Provides-Extra: mistral
|
|
110
|
+
Requires-Dist: mistralai~=1.1; extra == "mistral"
|
|
111
|
+
Provides-Extra: openai
|
|
112
|
+
Requires-Dist: openai~=1.70; extra == "openai"
|
|
113
|
+
Requires-Dist: tiktoken~=0.7; extra == "openai"
|
|
114
|
+
Requires-Dist: pydantic~=2.0; extra == "openai"
|
|
115
|
+
Provides-Extra: google
|
|
116
|
+
Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
|
|
117
|
+
Provides-Extra: together
|
|
118
|
+
Requires-Dist: together~=1.1; extra == "together"
|
|
119
|
+
Provides-Extra: yandex
|
|
120
|
+
Requires-Dist: sentencepiece~=0.2.0; extra == "yandex"
|
|
121
|
+
Provides-Extra: models
|
|
122
|
+
Requires-Dist: crfm-helm[ai21]; extra == "models"
|
|
123
|
+
Requires-Dist: crfm-helm[accelerate]; extra == "models"
|
|
124
|
+
Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
|
|
125
|
+
Requires-Dist: crfm-helm[allenai]; extra == "models"
|
|
126
|
+
Requires-Dist: crfm-helm[amazon]; extra == "models"
|
|
127
|
+
Requires-Dist: crfm-helm[anthropic]; extra == "models"
|
|
128
|
+
Requires-Dist: crfm-helm[cohere]; extra == "models"
|
|
129
|
+
Requires-Dist: crfm-helm[google]; extra == "models"
|
|
130
|
+
Requires-Dist: crfm-helm[mistral]; extra == "models"
|
|
131
|
+
Requires-Dist: crfm-helm[openai]; extra == "models"
|
|
132
|
+
Requires-Dist: crfm-helm[reka]; extra == "models"
|
|
133
|
+
Requires-Dist: crfm-helm[together]; extra == "models"
|
|
134
|
+
Requires-Dist: crfm-helm[yandex]; extra == "models"
|
|
135
|
+
Requires-Dist: crfm-helm[writer]; extra == "models"
|
|
136
|
+
Requires-Dist: crfm-helm[ibm-enterprise-scenarios]; extra == "models"
|
|
137
|
+
Provides-Extra: reka
|
|
138
|
+
Requires-Dist: reka-api~=2.0; extra == "reka"
|
|
139
|
+
Provides-Extra: vlm
|
|
140
|
+
Requires-Dist: crfm-helm[openai]; extra == "vlm"
|
|
141
|
+
Requires-Dist: einops~=0.7.0; extra == "vlm"
|
|
142
|
+
Requires-Dist: einops-exts~=0.0.4; extra == "vlm"
|
|
143
|
+
Requires-Dist: open-clip-torch~=2.24; extra == "vlm"
|
|
144
|
+
Requires-Dist: torch~=2.1; extra == "vlm"
|
|
145
|
+
Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
|
|
146
|
+
Requires-Dist: scipy~=1.10; extra == "vlm"
|
|
147
|
+
Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
|
|
148
|
+
Requires-Dist: crfm-helm[reka]; extra == "vlm"
|
|
149
|
+
Requires-Dist: crfm-helm[images]; extra == "vlm"
|
|
150
|
+
Requires-Dist: crfm-helm[image2struct]; extra == "vlm"
|
|
151
|
+
Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
|
|
152
|
+
Requires-Dist: transformers~=4.45; extra == "vlm"
|
|
153
|
+
Requires-Dist: qwen-vl-utils~=0.0.8; extra == "vlm"
|
|
154
|
+
Provides-Extra: ibm-enterprise-scenarios
|
|
155
|
+
Requires-Dist: openpyxl~=3.1; extra == "ibm-enterprise-scenarios"
|
|
156
|
+
Provides-Extra: ibm
|
|
157
|
+
Requires-Dist: ibm-watsonx-ai~=1.2; extra == "ibm"
|
|
158
|
+
Provides-Extra: image2struct
|
|
159
|
+
Requires-Dist: crfm-helm[images]; extra == "image2struct"
|
|
160
|
+
Requires-Dist: latex~=0.7.0; extra == "image2struct"
|
|
161
|
+
Requires-Dist: pdf2image~=1.16; extra == "image2struct"
|
|
162
|
+
Requires-Dist: selenium~=4.17; extra == "image2struct"
|
|
163
|
+
Requires-Dist: html2text~=2024.2.26; extra == "image2struct"
|
|
164
|
+
Requires-Dist: opencv-python-headless<=4.11.0.86,>=4.7.0.68; extra == "image2struct"
|
|
165
|
+
Requires-Dist: lpips~=0.1.4; extra == "image2struct"
|
|
166
|
+
Requires-Dist: imagehash~=4.3; extra == "image2struct"
|
|
167
|
+
Provides-Extra: heim
|
|
168
|
+
Requires-Dist: gdown~=5.1; extra == "heim"
|
|
169
|
+
Requires-Dist: diffusers~=0.34.0; extra == "heim"
|
|
170
|
+
Requires-Dist: icetk~=0.0.4; extra == "heim"
|
|
171
|
+
Requires-Dist: jax~=0.6.2; python_version >= "3.10" and extra == "heim"
|
|
172
|
+
Requires-Dist: jax~=0.4.30; python_version < "3.10" and extra == "heim"
|
|
173
|
+
Requires-Dist: jaxlib~=0.6.2; python_version >= "3.10" and extra == "heim"
|
|
174
|
+
Requires-Dist: jaxlib~=0.4.30; python_version < "3.10" and extra == "heim"
|
|
175
|
+
Requires-Dist: crfm-helm[openai]; extra == "heim"
|
|
176
|
+
Requires-Dist: einops~=0.7.0; extra == "heim"
|
|
177
|
+
Requires-Dist: omegaconf~=2.3; extra == "heim"
|
|
178
|
+
Requires-Dist: pytorch-lightning~=2.0; extra == "heim"
|
|
179
|
+
Requires-Dist: flax~=0.10.7; python_version >= "3.10" and extra == "heim"
|
|
180
|
+
Requires-Dist: flax~=0.8.5; python_version < "3.10" and extra == "heim"
|
|
181
|
+
Requires-Dist: ftfy~=6.1; extra == "heim"
|
|
182
|
+
Requires-Dist: Unidecode~=1.3; extra == "heim"
|
|
183
|
+
Requires-Dist: wandb~=0.16; extra == "heim"
|
|
184
|
+
Requires-Dist: google-cloud-translate~=3.11; extra == "heim"
|
|
185
|
+
Requires-Dist: autokeras~=1.0; extra == "heim"
|
|
186
|
+
Requires-Dist: clip-anytorch~=2.5; extra == "heim"
|
|
187
|
+
Requires-Dist: google-cloud-storage~=2.9; extra == "heim"
|
|
188
|
+
Requires-Dist: lpips~=0.1.4; extra == "heim"
|
|
189
|
+
Requires-Dist: multilingual-clip~=1.0; extra == "heim"
|
|
190
|
+
Requires-Dist: NudeNet~=2.0; extra == "heim"
|
|
191
|
+
Requires-Dist: opencv-python<4.8.2.0,>=4.7.0.68; python_version >= "3.10" and extra == "heim"
|
|
192
|
+
Requires-Dist: opencv-python-headless<=4.11.0.86,>=4.7.0.68; python_version < "3.10" and extra == "heim"
|
|
193
|
+
Requires-Dist: pytorch-fid~=0.3.0; extra == "heim"
|
|
194
|
+
Requires-Dist: tensorflow~=2.11; extra == "heim"
|
|
195
|
+
Requires-Dist: timm~=0.6.12; extra == "heim"
|
|
196
|
+
Requires-Dist: torch-fidelity~=0.3.0; extra == "heim"
|
|
197
|
+
Requires-Dist: torchmetrics~=0.11.1; extra == "heim"
|
|
198
|
+
Requires-Dist: scikit-image!=0.23.*,==0.*,>=0.22; extra == "heim"
|
|
199
|
+
Requires-Dist: crfm-helm[images]; extra == "heim"
|
|
200
|
+
Provides-Extra: medhelm
|
|
201
|
+
Requires-Dist: accelerate~=0.25; extra == "medhelm"
|
|
202
|
+
Requires-Dist: crfm-helm[openai]; extra == "medhelm"
|
|
203
|
+
Requires-Dist: crfm-helm[yandex]; extra == "medhelm"
|
|
204
|
+
Requires-Dist: bert_score~=0.3.13; extra == "medhelm"
|
|
205
|
+
Requires-Dist: lxml~=5.3; extra == "medhelm"
|
|
206
|
+
Requires-Dist: openpyxl~=3.1; extra == "medhelm"
|
|
207
|
+
Requires-Dist: python-docx~=1.1; extra == "medhelm"
|
|
208
|
+
Requires-Dist: transformers<4.50,~=4.45; extra == "medhelm"
|
|
209
|
+
Provides-Extra: audiolm
|
|
210
|
+
Requires-Dist: crfm-helm[openai]; extra == "audiolm"
|
|
211
|
+
Requires-Dist: crfm-helm[google]; extra == "audiolm"
|
|
212
|
+
Requires-Dist: pydub~=0.25.1; extra == "audiolm"
|
|
213
|
+
Requires-Dist: ffmpeg-python~=0.2.0; extra == "audiolm"
|
|
214
|
+
Requires-Dist: soundfile~=0.12; extra == "audiolm"
|
|
215
|
+
Requires-Dist: librosa~=0.10; extra == "audiolm"
|
|
216
|
+
Requires-Dist: einops~=0.7.0; extra == "audiolm"
|
|
217
|
+
Requires-Dist: openai-whisper==20240930; extra == "audiolm"
|
|
218
|
+
Requires-Dist: transformers~=4.48; extra == "audiolm"
|
|
219
|
+
Requires-Dist: transformers_stream_generator~=0.0.4; extra == "audiolm"
|
|
220
|
+
Requires-Dist: av~=14.3; extra == "audiolm"
|
|
221
|
+
Requires-Dist: scipy~=1.10; extra == "audiolm"
|
|
222
|
+
Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "audiolm"
|
|
223
|
+
Requires-Dist: flash-attn~=2.7; extra == "audiolm"
|
|
224
|
+
Requires-Dist: pycocoevalcap~=1.2; extra == "audiolm"
|
|
225
|
+
Requires-Dist: jiwer~=3.0; extra == "audiolm"
|
|
226
|
+
Requires-Dist: rapidfuzz~=3.10; extra == "audiolm"
|
|
227
|
+
Requires-Dist: jieba~=0.42.1; extra == "audiolm"
|
|
228
|
+
Provides-Extra: codeinsights
|
|
229
|
+
Requires-Dist: clang~=20.1; extra == "codeinsights"
|
|
230
|
+
Requires-Dist: Levenshtein~=0.27; extra == "codeinsights"
|
|
231
|
+
Provides-Extra: lmkt
|
|
232
|
+
Requires-Dist: sentence_transformers~=4.1; extra == "lmkt"
|
|
233
|
+
Provides-Extra: all
|
|
234
|
+
Requires-Dist: crfm-helm[proxy-server]; extra == "all"
|
|
235
|
+
Requires-Dist: crfm-helm[human-evaluation]; extra == "all"
|
|
236
|
+
Requires-Dist: crfm-helm[scenarios]; extra == "all"
|
|
237
|
+
Requires-Dist: crfm-helm[metrics]; extra == "all"
|
|
238
|
+
Requires-Dist: crfm-helm[plots]; extra == "all"
|
|
239
|
+
Requires-Dist: crfm-helm[decodingtrust]; extra == "all"
|
|
240
|
+
Requires-Dist: crfm-helm[slurm]; extra == "all"
|
|
241
|
+
Requires-Dist: crfm-helm[cleva]; extra == "all"
|
|
242
|
+
Requires-Dist: crfm-helm[images]; extra == "all"
|
|
243
|
+
Requires-Dist: crfm-helm[models]; extra == "all"
|
|
244
|
+
Requires-Dist: crfm-helm[mongo]; extra == "all"
|
|
245
|
+
Requires-Dist: crfm-helm[heim]; extra == "all"
|
|
246
|
+
Requires-Dist: crfm-helm[vlm]; extra == "all"
|
|
247
|
+
Requires-Dist: crfm-helm[codeinsights]; extra == "all"
|
|
248
|
+
Requires-Dist: crfm-helm[lmkt]; extra == "all"
|
|
249
|
+
Provides-Extra: dev
|
|
250
|
+
Requires-Dist: pytest~=7.2.0; extra == "dev"
|
|
251
|
+
Requires-Dist: xdoctest~=1.2.0; extra == "dev"
|
|
252
|
+
Requires-Dist: pre-commit~=2.20.0; extra == "dev"
|
|
253
|
+
Requires-Dist: black==24.3.0; extra == "dev"
|
|
254
|
+
Requires-Dist: mypy==1.16.0; extra == "dev"
|
|
255
|
+
Requires-Dist: flake8==5.0.4; extra == "dev"
|
|
256
|
+
Dynamic: license-file
|
|
257
|
+
|
|
258
|
+
# Holistic Evaluation of Language Models (HELM)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
<a href="https://github.com/stanford-crfm/helm">
|
|
262
|
+
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/stanford-crfm/helm">
|
|
263
|
+
</a>
|
|
264
|
+
<a href="https://github.com/stanford-crfm/helm/graphs/contributors">
|
|
265
|
+
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/stanford-crfm/helm">
|
|
266
|
+
</a>
|
|
267
|
+
<a href="https://github.com/stanford-crfm/helm/actions/workflows/test.yml?query=branch%3Amain">
|
|
268
|
+
<img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/stanford-crfm/helm/test.yml">
|
|
269
|
+
</a>
|
|
270
|
+
<a href="https://crfm-helm.readthedocs.io/en/latest/">
|
|
271
|
+
<img alt="Documentation Status" src="https://readthedocs.org/projects/helm/badge/?version=latest">
|
|
272
|
+
</a>
|
|
273
|
+
<a href="https://github.com/stanford-crfm/helm/blob/main/LICENSE">
|
|
274
|
+
<img alt="License" src="https://img.shields.io/github/license/stanford-crfm/helm?color=blue" />
|
|
275
|
+
</a>
|
|
276
|
+
<a href="https://pypi.org/project/crfm-helm/">
|
|
277
|
+
<img alt="PyPI" src="https://img.shields.io/pypi/v/crfm-helm?color=blue" />
|
|
278
|
+
</a>
|
|
279
|
+
|
|
280
|
+
[comment]: <> (When using the img tag, which allows us to specify size, src has to be a URL.)
|
|
281
|
+
<img src="https://github.com/stanford-crfm/helm/raw/v0.5.4/helm-frontend/src/assets/helm-logo.png" alt="HELM logo" width="480"/>
|
|
282
|
+
|
|
283
|
+
**Holistic Evaluation of Language Models (HELM)** is an open source Python framework created by the [Center for Research on Foundation Models (CRFM) at Stanford](https://crfm.stanford.edu/) for holistic, reproducible and transparent evaluation of foundation models, including large language models (LLMs) and multimodal models. This framework includes the following features:
|
|
284
|
+
|
|
285
|
+
- Datasets and benchmarks in a standardized format (e.g. MMLU-Pro, GPQA, IFEval, WildBench)
|
|
286
|
+
- Models from various providers accessible through a unified interface (e.g. OpenAI models, Anthropic Claude, Google Gemini)
|
|
287
|
+
- Metrics for measuring various aspects beyond accuracy (e.g. efficiency, bias, toxicity)
|
|
288
|
+
- Web UI for inspecting individual prompts and responses
|
|
289
|
+
- Web leaderboard for comparing results across models and benchmarks
|
|
290
|
+
|
|
291
|
+
## Documentation
|
|
292
|
+
|
|
293
|
+
Please refer to [the documentation on Read the Docs](https://crfm-helm.readthedocs.io/) for instructions on how to install and run HELM.
|
|
294
|
+
|
|
295
|
+
## Quick Start
|
|
296
|
+
|
|
297
|
+
<!--quick-start-begin-->
|
|
298
|
+
|
|
299
|
+
Install the package from PyPI:
|
|
300
|
+
|
|
301
|
+
```sh
|
|
302
|
+
pip install crfm-helm
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
Run the following in your shell:
|
|
306
|
+
|
|
307
|
+
```sh
|
|
308
|
+
# Run benchmark
|
|
309
|
+
helm-run --run-entries mmlu:subject=philosophy,model=openai/gpt2 --suite my-suite --max-eval-instances 10
|
|
310
|
+
|
|
311
|
+
# Summarize benchmark results
|
|
312
|
+
helm-summarize --suite my-suite
|
|
313
|
+
|
|
314
|
+
# Start a web server to display benchmark results
|
|
315
|
+
helm-server --suite my-suite
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
Then go to http://localhost:8000/ in your browser.
|
|
319
|
+
|
|
320
|
+
<!--quick-start-end-->
|
|
321
|
+
|
|
322
|
+
## Leaderboards
|
|
323
|
+
|
|
324
|
+
We maintain offical leaderboards with results from evaluating recent models on notable benchmarks using this framework. Our current flagship leaderboards are:
|
|
325
|
+
|
|
326
|
+
- [HELM Capabilities](https://crfm.stanford.edu/helm/capabilities/latest/)
|
|
327
|
+
- [HELM Safety](https://crfm.stanford.edu/helm/safety/latest/)
|
|
328
|
+
- [Holistic Evaluation of Vision-Language Models (VHELM)](https://crfm.stanford.edu/helm/vhelm/latest/)
|
|
329
|
+
|
|
330
|
+
We also maintain leaderboards for a diverse range of domains (e.g. medicine, finance) and aspects (e.g. multi-linguality, world knowledge, regulation compliance). Refer to the [HELM website](https://crfm.stanford.edu/helm/) for a full list of leaderboards.
|
|
331
|
+
|
|
332
|
+
## Papers
|
|
333
|
+
|
|
334
|
+
The HELM framework was used in the following papers for evaluating models.
|
|
335
|
+
|
|
336
|
+
- **Holistic Evaluation of Language Models** - [paper](https://openreview.net/forum?id=iO4LZibEqW), [leaderboard](https://crfm.stanford.edu/helm/classic/latest/)
|
|
337
|
+
- **Holistic Evaluation of Vision-Language Models (VHELM)** - [paper](https://arxiv.org/abs/2410.07112), [leaderboard](https://crfm.stanford.edu/helm/vhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/vhelm/)
|
|
338
|
+
- **Holistic Evaluation of Text-To-Image Models (HEIM)** - [paper](https://arxiv.org/abs/2311.04287), [leaderboard](https://crfm.stanford.edu/helm/heim/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/heim/)
|
|
339
|
+
- **Image2Struct: Benchmarking Structure Extraction for Vision-Language Models** - [paper](https://arxiv.org/abs/2410.22456)
|
|
340
|
+
- **Enterprise Benchmarks for Large Language Model Evaluation** - [paper](https://arxiv.org/abs/2410.12857), [documentation](https://crfm-helm.readthedocs.io/en/latest/enterprise_benchmark/)
|
|
341
|
+
- **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
|
+
- **Reliable and Efficient Amortized Model-based Evaluation** - [paper](https://arxiv.org/abs/2503.13335), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
|
|
343
|
+
- **MedHELM** - paper in progress, [leaderboard](https://crfm.stanford.edu/helm/medhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
|
|
344
|
+
|
|
345
|
+
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
|
+
|
|
347
|
+
## Citation
|
|
348
|
+
|
|
349
|
+
If you use this software in your research, please cite the [Holistic Evaluation of Language Models paper](https://openreview.net/forum?id=iO4LZibEqW) as below.
|
|
350
|
+
|
|
351
|
+
```bibtex
|
|
352
|
+
@article{
|
|
353
|
+
liang2023holistic,
|
|
354
|
+
title={Holistic Evaluation of Language Models},
|
|
355
|
+
author={Percy Liang and Rishi Bommasani and Tony Lee and Dimitris Tsipras and Dilara Soylu and Michihiro Yasunaga and Yian Zhang and Deepak Narayanan and Yuhuai Wu and Ananya Kumar and Benjamin Newman and Binhang Yuan and Bobby Yan and Ce Zhang and Christian Alexander Cosgrove and Christopher D Manning and Christopher Re and Diana Acosta-Navas and Drew Arad Hudson and Eric Zelikman and Esin Durmus and Faisal Ladhak and Frieda Rong and Hongyu Ren and Huaxiu Yao and Jue WANG and Keshav Santhanam and Laurel Orr and Lucia Zheng and Mert Yuksekgonul and Mirac Suzgun and Nathan Kim and Neel Guha and Niladri S. Chatterji and Omar Khattab and Peter Henderson and Qian Huang and Ryan Andrew Chi and Sang Michael Xie and Shibani Santurkar and Surya Ganguli and Tatsunori Hashimoto and Thomas Icard and Tianyi Zhang and Vishrav Chaudhary and William Wang and Xuechen Li and Yifan Mai and Yuhui Zhang and Yuta Koreeda},
|
|
356
|
+
journal={Transactions on Machine Learning Research},
|
|
357
|
+
issn={2835-8856},
|
|
358
|
+
year={2023},
|
|
359
|
+
url={https://openreview.net/forum?id=iO4LZibEqW},
|
|
360
|
+
note={Featured Certification, Expert Certification}
|
|
361
|
+
}
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
# Tutorial
|
|
365
|
+
|
|
366
|
+
This tutorial will explain how to use the HELM command line tools to run benchmarks, aggregate statistics, and visualize results.
|
|
367
|
+
|
|
368
|
+
We will run two runs using the `mmlu` scenario on the `openai/gpt2` model. The `mmlu` scenario implements the **Massive Multitask Language (MMLU)** benchmark from [this paper](https://arxiv.org/pdf/2009.03300.pdf), and consists of a Question Answering (QA) task using a dataset with questions from 57 subjects such as elementary mathematics, US history, computer science, law, and more. Note that GPT-2 performs poorly on MMLU, so this is just a proof of concept. We will run two runs: the first using questions about anatomy, and the second using questions about philosophy.
|
|
369
|
+
|
|
370
|
+
## Using `helm-run`
|
|
371
|
+
|
|
372
|
+
`helm-run` is a command line tool for running benchmarks.
|
|
373
|
+
|
|
374
|
+
To run this benchmark using the HELM command-line tools, we need to specify **run entries** that describes the desired runs. For this example, the run entries are `mmlu:subject=anatomy,model=openai/gpt2` (for anatomy) and `mmlu:subject=philosophy,model=openai/gpt2` (for philosophy).
|
|
375
|
+
|
|
376
|
+
We will now use `helm-run` to execute the runs. Run this command:
|
|
377
|
+
|
|
378
|
+
```sh
|
|
379
|
+
helm-run --run-entries mmlu:subject=anatomy,model=openai/gpt2 mmlu:subject=philosophy,model=openai/gpt2 --suite my-suite --max-eval-instances 10
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
The meaning of the arguments are as follows:
|
|
383
|
+
|
|
384
|
+
- `--run-entries` specifies the run entries from the desired runs.
|
|
385
|
+
- `--suite` specifies a subdirectory under the output directory in which all the output will be placed.
|
|
386
|
+
- `--max-eval-instances` limits evaluation to only *N* instances (i.e. items) from the benchmark, using a randomly shuffled order of instances.
|
|
387
|
+
|
|
388
|
+
`helm-run` creates an environment directory environment and an output directory by default.
|
|
389
|
+
|
|
390
|
+
- The environment directory is `prod_env/` by default and can be set using `--local-path`. Credentials for making API calls should be added to a `credentials.conf` file in this directory.
|
|
391
|
+
- The output directory is `benchmark_output/` by default and can be set using `--output-path`.
|
|
392
|
+
|
|
393
|
+
After running this command, navigate to the `benchmark_output/runs/my-suite/` directory. This should contain a two sub-directories named `mmlu:subject=anatomy,model=openai_gpt2` and `mmlu:subject=philosophy,model=openai_gpt2`. Note that the names of these sub-directories is based on the run entries we used earlier, but with `/` replaced with `_`.
|
|
394
|
+
|
|
395
|
+
Each output sub-directory will contain several JSON files that were generated during the corresponding run:
|
|
396
|
+
|
|
397
|
+
- `run_spec.json` contains the `RunSpec`, which specifies the scenario, adapter and metrics for the run.
|
|
398
|
+
- `scenario.json` contains a serialized `Scenario`, which contains the scenario for the run and specifies the instances (i.e. inputs) used.
|
|
399
|
+
- `scenario_state.json` contains a serialized `ScenarioState`, which contains every request to and response from the model.
|
|
400
|
+
- `per_instance_stats.json` contains a serialized list of `PerInstanceStats`, which contains the statistics produced for the metrics for each instance (i.e. input).
|
|
401
|
+
- `stats.json` contains a serialized list of `PerInstanceStats`, which contains the statistics produced for the metrics, aggregated across all instances (i.e. inputs).
|
|
402
|
+
|
|
403
|
+
## Using `helm-summarize`
|
|
404
|
+
|
|
405
|
+
The `helm-summarize` reads the output files of `helm-run` and computes aggregate statistics across runs. Run the following:
|
|
406
|
+
|
|
407
|
+
```sh
|
|
408
|
+
helm-summarize --suite my-suite
|
|
409
|
+
```
|
|
410
|
+
|
|
411
|
+
This reads the pre-existing files in `benchmark_output/runs/my-suite/` that were written by `helm-run` previously, and writes the following new files back to `benchmark_output/runs/my-suite/`:
|
|
412
|
+
|
|
413
|
+
- `summary.json` contains a serialized `ExecutiveSummary` with a date and suite name.
|
|
414
|
+
- `run_specs.json` contains the run entries for all the runs.
|
|
415
|
+
- `runs.json` contains serialized list of `Run`, which contains the run path, run spec and adapter spec and statistics for each run.
|
|
416
|
+
- `groups.json` contains a serialized list of `Table`, each containing information about groups in a group category.
|
|
417
|
+
- `groups_metadata.json` contains a list of all the groups along with a human-readable description and a taxonomy.
|
|
418
|
+
|
|
419
|
+
Additionally, for each group and group-relavent metric, it will output a pair of files: `benchmark_output/runs/my-suite/groups/latex/<group_name>_<metric_name>.tex` and `benchmark_output/runs/my-suite/groups/json/<group_name>_<metric_name>.json`. These files contain the statistics for that metric from each run within the group.
|
|
420
|
+
|
|
421
|
+
## Using `helm-server`
|
|
422
|
+
|
|
423
|
+
Finally, the `helm-server` command launches a web server to visualize the output files of `helm-run` and `helm-benchmark`. Run:
|
|
424
|
+
|
|
425
|
+
```sh
|
|
426
|
+
helm-server --suite my-suite
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
Open a browser and go to http://localhost:8000/ to view the visualization. You should see a similar view as [live website for the paper](https://crfm.stanford.edu/helm/classic/latest/), but for the data from your benchmark runs. The website has the following sections accessible from the top menu bar:
|
|
430
|
+
|
|
431
|
+
- **Leaderboards** contains the leaderboards with aggregate metrics.
|
|
432
|
+
- **Models** contains a list of models and their descriptions
|
|
433
|
+
- **Scenarios** contains a list of scenarios and their descriptions.
|
|
434
|
+
- **Predictions** contains a searchable list of runs.
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Holistic Evaluation of Language Models (HELM)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
<a href="https://github.com/stanford-crfm/helm">
|
|
5
|
+
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/stanford-crfm/helm">
|
|
6
|
+
</a>
|
|
7
|
+
<a href="https://github.com/stanford-crfm/helm/graphs/contributors">
|
|
8
|
+
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/stanford-crfm/helm">
|
|
9
|
+
</a>
|
|
10
|
+
<a href="https://github.com/stanford-crfm/helm/actions/workflows/test.yml?query=branch%3Amain">
|
|
11
|
+
<img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/stanford-crfm/helm/test.yml">
|
|
12
|
+
</a>
|
|
13
|
+
<a href="https://crfm-helm.readthedocs.io/en/latest/">
|
|
14
|
+
<img alt="Documentation Status" src="https://readthedocs.org/projects/helm/badge/?version=latest">
|
|
15
|
+
</a>
|
|
16
|
+
<a href="https://github.com/stanford-crfm/helm/blob/main/LICENSE">
|
|
17
|
+
<img alt="License" src="https://img.shields.io/github/license/stanford-crfm/helm?color=blue" />
|
|
18
|
+
</a>
|
|
19
|
+
<a href="https://pypi.org/project/crfm-helm/">
|
|
20
|
+
<img alt="PyPI" src="https://img.shields.io/pypi/v/crfm-helm?color=blue" />
|
|
21
|
+
</a>
|
|
22
|
+
|
|
23
|
+
[comment]: <> (When using the img tag, which allows us to specify size, src has to be a URL.)
|
|
24
|
+
<img src="https://github.com/stanford-crfm/helm/raw/v0.5.4/helm-frontend/src/assets/helm-logo.png" alt="HELM logo" width="480"/>
|
|
25
|
+
|
|
26
|
+
**Holistic Evaluation of Language Models (HELM)** is an open source Python framework created by the [Center for Research on Foundation Models (CRFM) at Stanford](https://crfm.stanford.edu/) for holistic, reproducible and transparent evaluation of foundation models, including large language models (LLMs) and multimodal models. This framework includes the following features:
|
|
27
|
+
|
|
28
|
+
- Datasets and benchmarks in a standardized format (e.g. MMLU-Pro, GPQA, IFEval, WildBench)
|
|
29
|
+
- Models from various providers accessible through a unified interface (e.g. OpenAI models, Anthropic Claude, Google Gemini)
|
|
30
|
+
- Metrics for measuring various aspects beyond accuracy (e.g. efficiency, bias, toxicity)
|
|
31
|
+
- Web UI for inspecting individual prompts and responses
|
|
32
|
+
- Web leaderboard for comparing results across models and benchmarks
|
|
33
|
+
|
|
34
|
+
## Documentation
|
|
35
|
+
|
|
36
|
+
Please refer to [the documentation on Read the Docs](https://crfm-helm.readthedocs.io/) for instructions on how to install and run HELM.
|
|
37
|
+
|
|
38
|
+
## Quick Start
|
|
39
|
+
|
|
40
|
+
<!--quick-start-begin-->
|
|
41
|
+
|
|
42
|
+
Install the package from PyPI:
|
|
43
|
+
|
|
44
|
+
```sh
|
|
45
|
+
pip install crfm-helm
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Run the following in your shell:
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
# Run benchmark
|
|
52
|
+
helm-run --run-entries mmlu:subject=philosophy,model=openai/gpt2 --suite my-suite --max-eval-instances 10
|
|
53
|
+
|
|
54
|
+
# Summarize benchmark results
|
|
55
|
+
helm-summarize --suite my-suite
|
|
56
|
+
|
|
57
|
+
# Start a web server to display benchmark results
|
|
58
|
+
helm-server --suite my-suite
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Then go to http://localhost:8000/ in your browser.
|
|
62
|
+
|
|
63
|
+
<!--quick-start-end-->
|
|
64
|
+
|
|
65
|
+
## Leaderboards
|
|
66
|
+
|
|
67
|
+
We maintain offical leaderboards with results from evaluating recent models on notable benchmarks using this framework. Our current flagship leaderboards are:
|
|
68
|
+
|
|
69
|
+
- [HELM Capabilities](https://crfm.stanford.edu/helm/capabilities/latest/)
|
|
70
|
+
- [HELM Safety](https://crfm.stanford.edu/helm/safety/latest/)
|
|
71
|
+
- [Holistic Evaluation of Vision-Language Models (VHELM)](https://crfm.stanford.edu/helm/vhelm/latest/)
|
|
72
|
+
|
|
73
|
+
We also maintain leaderboards for a diverse range of domains (e.g. medicine, finance) and aspects (e.g. multi-linguality, world knowledge, regulation compliance). Refer to the [HELM website](https://crfm.stanford.edu/helm/) for a full list of leaderboards.
|
|
74
|
+
|
|
75
|
+
## Papers
|
|
76
|
+
|
|
77
|
+
The HELM framework was used in the following papers for evaluating models.
|
|
78
|
+
|
|
79
|
+
- **Holistic Evaluation of Language Models** - [paper](https://openreview.net/forum?id=iO4LZibEqW), [leaderboard](https://crfm.stanford.edu/helm/classic/latest/)
|
|
80
|
+
- **Holistic Evaluation of Vision-Language Models (VHELM)** - [paper](https://arxiv.org/abs/2410.07112), [leaderboard](https://crfm.stanford.edu/helm/vhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/vhelm/)
|
|
81
|
+
- **Holistic Evaluation of Text-To-Image Models (HEIM)** - [paper](https://arxiv.org/abs/2311.04287), [leaderboard](https://crfm.stanford.edu/helm/heim/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/heim/)
|
|
82
|
+
- **Image2Struct: Benchmarking Structure Extraction for Vision-Language Models** - [paper](https://arxiv.org/abs/2410.22456)
|
|
83
|
+
- **Enterprise Benchmarks for Large Language Model Evaluation** - [paper](https://arxiv.org/abs/2410.12857), [documentation](https://crfm-helm.readthedocs.io/en/latest/enterprise_benchmark/)
|
|
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
|
+
- **Reliable and Efficient Amortized Model-based Evaluation** - [paper](https://arxiv.org/abs/2503.13335), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
|
|
86
|
+
- **MedHELM** - paper in progress, [leaderboard](https://crfm.stanford.edu/helm/medhelm/latest/), [documentation](https://crfm-helm.readthedocs.io/en/latest/reeval/)
|
|
87
|
+
|
|
88
|
+
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
|
+
## Citation
|
|
91
|
+
|
|
92
|
+
If you use this software in your research, please cite the [Holistic Evaluation of Language Models paper](https://openreview.net/forum?id=iO4LZibEqW) as below.
|
|
93
|
+
|
|
94
|
+
```bibtex
|
|
95
|
+
@article{
|
|
96
|
+
liang2023holistic,
|
|
97
|
+
title={Holistic Evaluation of Language Models},
|
|
98
|
+
author={Percy Liang and Rishi Bommasani and Tony Lee and Dimitris Tsipras and Dilara Soylu and Michihiro Yasunaga and Yian Zhang and Deepak Narayanan and Yuhuai Wu and Ananya Kumar and Benjamin Newman and Binhang Yuan and Bobby Yan and Ce Zhang and Christian Alexander Cosgrove and Christopher D Manning and Christopher Re and Diana Acosta-Navas and Drew Arad Hudson and Eric Zelikman and Esin Durmus and Faisal Ladhak and Frieda Rong and Hongyu Ren and Huaxiu Yao and Jue WANG and Keshav Santhanam and Laurel Orr and Lucia Zheng and Mert Yuksekgonul and Mirac Suzgun and Nathan Kim and Neel Guha and Niladri S. Chatterji and Omar Khattab and Peter Henderson and Qian Huang and Ryan Andrew Chi and Sang Michael Xie and Shibani Santurkar and Surya Ganguli and Tatsunori Hashimoto and Thomas Icard and Tianyi Zhang and Vishrav Chaudhary and William Wang and Xuechen Li and Yifan Mai and Yuhui Zhang and Yuta Koreeda},
|
|
99
|
+
journal={Transactions on Machine Learning Research},
|
|
100
|
+
issn={2835-8856},
|
|
101
|
+
year={2023},
|
|
102
|
+
url={https://openreview.net/forum?id=iO4LZibEqW},
|
|
103
|
+
note={Featured Certification, Expert Certification}
|
|
104
|
+
}
|
|
105
|
+
```
|