crfm-helm 0.5.2__tar.gz → 0.5.3__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.2/src/crfm_helm.egg-info → crfm_helm-0.5.3}/PKG-INFO +29 -55
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/README.md +0 -33
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/setup.cfg +24 -16
- {crfm_helm-0.5.2 → crfm_helm-0.5.3/src/crfm_helm.egg-info}/PKG-INFO +29 -55
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/crfm_helm.egg-info/SOURCES.txt +67 -55
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/crfm_helm.egg-info/requires.txt +22 -14
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_adapter.py +12 -5
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/test_generation_adapter.py +12 -12
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/test_language_modeling_adapter.py +8 -8
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/test_multiple_choice_joint_adapter.py +77 -9
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/common_adapter_specs.py +2 -0
- crfm_helm-0.5.3/src/helm/benchmark/annotation/anthropic_red_team_annotator.py +70 -0
- crfm_helm-0.5.3/src/helm/benchmark/annotation/call_center_annotator.py +247 -0
- crfm_helm-0.5.3/src/helm/benchmark/annotation/financebench_annotator.py +79 -0
- crfm_helm-0.5.3/src/helm/benchmark/annotation/harm_bench_annotator.py +68 -0
- {crfm_helm-0.5.2/src/helm/benchmark/annotation/image2structure → crfm_helm-0.5.3/src/helm/benchmark/annotation/image2struct}/latex_compiler_annotator.py +2 -2
- {crfm_helm-0.5.2/src/helm/benchmark/annotation/image2structure → crfm_helm-0.5.3/src/helm/benchmark/annotation/image2struct}/lilypond_compiler_annotator.py +5 -3
- {crfm_helm-0.5.2/src/helm/benchmark/annotation/image2structure → crfm_helm-0.5.3/src/helm/benchmark/annotation/image2struct}/webpage_compiler_annotator.py +5 -5
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/live_qa_annotator.py +32 -45
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/medication_qa_annotator.py +31 -44
- crfm_helm-0.5.3/src/helm/benchmark/annotation/model_as_judge.py +45 -0
- crfm_helm-0.5.3/src/helm/benchmark/annotation/simple_safety_tests_annotator.py +64 -0
- crfm_helm-0.5.3/src/helm/benchmark/annotation/xstest_annotator.py +110 -0
- crfm_helm-0.5.3/src/helm/benchmark/metrics/annotation_metrics.py +108 -0
- crfm_helm-0.5.3/src/helm/benchmark/metrics/bhasa_metrics.py +188 -0
- crfm_helm-0.5.3/src/helm/benchmark/metrics/bhasa_metrics_specs.py +10 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/code_metrics_helper.py +11 -1
- crfm_helm-0.5.3/src/helm/benchmark/metrics/safety_metrics.py +57 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/summac/model_summac.py +3 -3
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/test_ai21_token_cost_estimator.py +2 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/test_openai_token_cost_estimator.py +4 -4
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/vision_language/image_metrics.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/vision_language/image_utils.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/model_metadata_registry.py +3 -3
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/test_run_entry.py +1 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run.py +15 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_expander.py +56 -30
- crfm_helm-0.5.3/src/helm/benchmark/run_specs/bhasa_run_specs.py +638 -0
- crfm_helm-0.5.3/src/helm/benchmark/run_specs/call_center_run_specs.py +152 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/decodingtrust_run_specs.py +8 -8
- crfm_helm-0.5.3/src/helm/benchmark/run_specs/experimental_run_specs.py +85 -0
- crfm_helm-0.5.3/src/helm/benchmark/run_specs/finance_run_specs.py +110 -0
- crfm_helm-0.5.3/src/helm/benchmark/run_specs/safety_run_specs.py +154 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/vlm_run_specs.py +92 -21
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/anthropic_red_team_scenario.py +71 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/banking77_scenario.py +51 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/bhasa_scenario.py +1798 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/call_center_scenario.py +84 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_stereotype_bias_scenario.py +2 -1
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/ewok_scenario.py +116 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/fin_qa_scenario.py +2 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/financebench_scenario.py +53 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/harm_bench_scenario.py +59 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/scenario.py +1 -1
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/simple_safety_tests_scenario.py +33 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_commonsense_scenario.py +21 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_ewok_scenario.py +25 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_financebench_scenario.py +26 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_gsm_scenario.py +31 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_legalbench_scenario.py +30 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/test_math_scenario.py +2 -8
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_med_qa_scenario.py +30 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_mmlu_scenario.py +33 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/test_narrativeqa_scenario.py +73 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/thai_exam_scenario.py +4 -4
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/a_okvqa_scenario.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/bingo_scenario.py +2 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/crossmodal_3600_scenario.py +2 -1
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/exams_v_scenario.py +104 -0
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/fair_face_scenario.py +136 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/flickr30k_scenario.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/gqa_scenario.py +2 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/hateful_memes_scenario.py +1 -1
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/chart2csv_scenario.py +1 -1
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/latex_scenario.py +3 -3
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/musicsheet_scenario.py +1 -1
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/utils_latex.py +31 -39
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/webpage/driver.py +1 -1
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/webpage/utils.py +1 -1
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/webpage_scenario.py +41 -12
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/math_vista_scenario.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/mementos_scenario.py +3 -3
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/mm_safety_bench_scenario.py +2 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/mme_scenario.py +21 -18
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/mmmu_scenario.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/pairs_scenario.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/pope_scenario.py +2 -1
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/real_world_qa_scenario.py +57 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py +7 -5
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py +2 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py +6 -3
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py +1 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/vqa_scenario.py +3 -1
- crfm_helm-0.5.3/src/helm/benchmark/scenarios/xstest_scenario.py +35 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/server.py +1 -6
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_air_bench.yaml +750 -750
- crfm_helm-0.5.3/src/helm/benchmark/static/schema_bhasa.yaml +709 -0
- crfm_helm-0.5.3/src/helm/benchmark/static/schema_call_center.yaml +232 -0
- crfm_helm-0.5.3/src/helm/benchmark/static/schema_cleva.yaml +768 -0
- crfm_helm-0.5.3/src/helm/benchmark/static/schema_decodingtrust.yaml +444 -0
- crfm_helm-0.5.3/src/helm/benchmark/static/schema_ewok.yaml +367 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_finance.yaml +55 -9
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_image2structure.yaml → crfm_helm-0.5.3/src/helm/benchmark/static/schema_image2struct.yaml +231 -90
- crfm_helm-0.5.3/src/helm/benchmark/static/schema_safety.yaml +247 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_tables.yaml +124 -7
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_thai.yaml +21 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_vhelm.yaml +96 -91
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/accenture-6f97eeda.png +0 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/aisingapore-6dfc9acf.png +0 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/cresta-9e22b983.png +0 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/cuhk-8c5631e9.png +0 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/index-05c76bb1.css +1 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/index-58f97dcd.js +10 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/scb10x-204bd786.png +0 -0
- crfm_helm-0.5.3/src/helm/benchmark/static_build/assets/wellsfargo-a86a6c4a.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/index.html +2 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_openai_window_service.py +8 -8
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/ai21_client.py +71 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/anthropic_client.py +7 -19
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/huggingface_client.py +38 -37
- crfm_helm-0.5.3/src/helm/clients/nvidia_nim_client.py +35 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/openai_client.py +2 -3
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/palmyra_client.py +25 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/perspective_api_client.py +11 -6
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/test_client.py +4 -6
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo_client.py +1 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/palmyra_vision_client.py +28 -13
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/images_utils.py +6 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/mongo_key_value_store.py +2 -1
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/request.py +16 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/config/model_deployments.yaml +315 -332
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/config/model_metadata.yaml +384 -110
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/config/tokenizer_configs.yaml +116 -11
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/example_queries.py +14 -21
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/services/server_service.py +1 -2
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/token_counters/test_auto_token_counter.py +2 -2
- crfm_helm-0.5.3/src/helm/tokenizers/ai21_tokenizer.py +52 -0
- crfm_helm-0.5.3/src/helm/tokenizers/cohere_tokenizer.py +50 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/huggingface_tokenizer.py +0 -1
- crfm_helm-0.5.3/src/helm/tokenizers/test_ai21_tokenizer.py +48 -0
- crfm_helm-0.5.2/src/helm/benchmark/run_specs/experimental_run_specs.py +0 -33
- crfm_helm-0.5.2/src/helm/benchmark/run_specs/finance_run_specs.py +0 -33
- crfm_helm-0.5.2/src/helm/benchmark/static/benchmarking.css +0 -156
- crfm_helm-0.5.2/src/helm/benchmark/static/benchmarking.js +0 -1705
- crfm_helm-0.5.2/src/helm/benchmark/static/config.js +0 -3
- crfm_helm-0.5.2/src/helm/benchmark/static/general.js +0 -122
- crfm_helm-0.5.2/src/helm/benchmark/static/images/crfm-logo.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/helm-logo-simple.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/helm-logo.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/language-model-helm.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/ai21.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/anthropic.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/bigscience.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/cohere.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/eleutherai.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/google.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/meta.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/microsoft.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/nvidia.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/openai.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/together.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/tsinghua-keg.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/organizations/yandex.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/scenarios-by-metrics.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/images/taxonomy-scenarios.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/index.html +0 -68
- crfm_helm-0.5.2/src/helm/benchmark/static/info-icon.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/json-urls.js +0 -69
- crfm_helm-0.5.2/src/helm/benchmark/static/plot-captions.js +0 -27
- crfm_helm-0.5.2/src/helm/benchmark/static/utils.js +0 -285
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/index-30dbceba.js +0 -10
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/index-66b02d40.css +0 -1
- crfm_helm-0.5.2/src/helm/benchmark/window_services/ai21_window_service.py +0 -247
- crfm_helm-0.5.2/src/helm/benchmark/window_services/cohere_window_service.py +0 -101
- crfm_helm-0.5.2/src/helm/benchmark/window_services/test_ai21_window_service.py +0 -163
- crfm_helm-0.5.2/src/helm/benchmark/window_services/test_cohere_window_service.py +0 -75
- crfm_helm-0.5.2/src/helm/benchmark/window_services/test_cohere_window_service_utils.py +0 -8328
- crfm_helm-0.5.2/src/helm/benchmark/window_services/test_ice_window_service.py +0 -327
- crfm_helm-0.5.2/src/helm/tokenizers/ai21_tokenizer.py +0 -60
- crfm_helm-0.5.2/src/helm/tokenizers/cohere_tokenizer.py +0 -125
- crfm_helm-0.5.2/src/helm/tokenizers/ice_tokenizer.py +0 -30
- crfm_helm-0.5.2/src/helm/tokenizers/test_ice_tokenizer.py +0 -57
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/LICENSE +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/MANIFEST.in +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/docs/tutorial.md +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/pyproject.toml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/crfm_helm.egg-info/dependency_links.txt +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/crfm_helm.egg-info/entry_points.txt +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/crfm_helm.egg-info/not-zip-safe +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/crfm_helm.egg-info/top_level.txt +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapter_spec.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/adapter_factory.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/binary_ranking_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/generation_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/in_context_learning_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/language_modeling_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/generation_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/in_context_learning_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/multimodal_prompt.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multiple_choice_calibrated_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/multiple_choice_separate_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/adapters/test_adapter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/prompt.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/request_state.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/adaptation/scenario_state.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/air_bench_annotator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/annotator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/annotator_factory.py +0 -0
- {crfm_helm-0.5.2/src/helm/benchmark/annotation/image2structure → crfm_helm-0.5.3/src/helm/benchmark/annotation/image2struct}/__init__.py +0 -0
- {crfm_helm-0.5.2/src/helm/benchmark/annotation/image2structure → crfm_helm-0.5.3/src/helm/benchmark/annotation/image2struct}/image_compiler_annotator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/test_annotator_factory.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation/test_dummy_annotator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/annotation_executor.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/cleva_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/contraction_expansion_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/contrast_sets_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/correct_to_misspelling.json +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/data_augmenter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/dialect_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/extra_space_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/filler_words_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/gender_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/lowercase_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/mild_mix_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/misspelling_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/person_name_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/perturbation_description.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/space_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/suffix_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/synonym_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/test_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/translate_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/augmentations/typos_perturbation.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/config_registry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/data_overlap/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/data_overlap/data_overlap_spec.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/data_overlap/export_scenario_text.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/data_overlap/light_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/data_preprocessor.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/efficiency_data/training_efficiency.json +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/executor.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/huggingface_registration.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/air_bench_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/basic_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/bbq_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/bias_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/bias_word_lists.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/classification_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/cleva_accuracy_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/cleva_harms_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/cleva_metrics_helper.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/code_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/common_metric_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/copyright_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/decodingtrust_fairness_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/decodingtrust_ood_knowledge_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/decodingtrust_privacy_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/decodingtrust_stereotype_bias_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/disinformation_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/dry_run_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/efficiency_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/evaluate_instances_metric.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/evaluate_reference_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/fin_qa_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/fin_qa_metrics_helper.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/aesthetics_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/aesthetics_scorer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/clip_score_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/denoised_runtime_metric.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/detection_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/detectors/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/detectors/base_detector.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/detectors/vitdet.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/efficiency_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/fidelity_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/fractal_dimension/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/fractal_dimension/fractal_dimension_util.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/fractal_dimension/test_fractal_dimension_util.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/fractal_dimension_metric.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/gender_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/image_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/lpips_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/multi_scale_ssim_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/nsfw_detector.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/nsfw_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/nudity_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/photorealism_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/psnr_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/q16/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/q16/q16_toxicity_detector.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/q16/test_q16.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/q16_toxicity_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/skin_tone_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/uiqi_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/watermark/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/watermark/test_watermark_detector.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/watermark/watermark_detector.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/image_generation/watermark_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/instruction_following_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/language_modeling_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/live_qa_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/machine_translation_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/medication_qa_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/metric.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/metric_name.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/metric_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/numeracy_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/paraphrase_generation_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/ranking_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/reference_metric.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/reka_vibe_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/statistic.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/summac/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/summac/utils_misc.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/summarization_critique_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/summarization_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_bias_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_classification_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_disinformation_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_evaluate_reference_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_metric.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_numeracy_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/test_statistic.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/ai21_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/auto_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/cohere_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/free_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/gooseai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/openai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/tokens/token_cost_estimator.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/toxicity_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/toxicity_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/unitxt_metrics.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/metrics/vision_language/emd_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/model_deployment_registry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/multi_gpu_runner.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/contamination.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/create_plots.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/run_display.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/run_entry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/schema.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/summarize.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/table.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/test_contamination.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/test_create_plots.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/test_schema.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/presentation/test_summarize.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_spec.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_spec_factory.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/air_bench_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/classic_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/cleva_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/heim_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/instruction_following_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/lite_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/simple_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/run_specs/unitxt_run_specs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/runner.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/runner_config_registry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/air_bench_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/babi_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/bbq_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/big_bench_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/blimp_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/bold_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/boolq_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/ci_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/civil_comments_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/cleva_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/code_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/code_scenario_apps_pinned_file_order.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/code_scenario_helper.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/commonsense_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/copyright_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/covid_dialog_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/custom_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_adv_demonstration_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_adv_robustness_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_fairness_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_machine_ethics_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_ood_robustness_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_privacy_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/decodingtrust_toxicity_prompts_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/dialogue_scenarios.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/disinformation_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/dyck_language_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/entity_data_imputation_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/entity_matching_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/grammar.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/grammar_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/gsm_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/ice_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/ice_scenario_pinned_file_order.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/common_syntactic_processes_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/cub200_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/daily_dalle_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/demographic_stereotypes_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/detection_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/draw_bench_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/i2p_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/landing_page_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/logos_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/magazine_cover_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/mental_disorders_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/mscoco_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/paint_skills_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/parti_prompts_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/radiology_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/relational_understanding_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/time_most_significant_historical_figures_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/image_generation/winoground_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/imdb_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/imdb_scenario_pinned_file_order.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/interactive_qa_mmlu_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/koala_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/legal_summarization_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/legal_support_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/legalbench_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/lex_glue_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/lextreme_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/live_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/lm_entry_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/lsat_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/math_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/me_q_sum_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/med_dialog_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/med_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/med_paragraph_simplification_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/med_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/medication_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/mmlu_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/msmarco_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/narrativeqa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/natural_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/newsqa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/numeracy_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/open_assistant_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/opinions_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/pubmed_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/quac_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/raft_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/real_toxicity_prompts_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/self_instruct_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/simple_scenarios.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/summarization_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/test_air_bench_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/test_grammar.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/test_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/test_simple_scenarios.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/the_pile_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/truthful_qa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/twitter_aae_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/unitxt_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/verifiability_judgment_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vicuna_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/heim_human_eval_scenario.py +0 -0
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/__init__.py +0 -0
- /crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure/image2structure_scenario.py → /crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct/image2struct_scenario.py +0 -0
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/webpage/__init__.py +0 -0
- {crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/image2structure → crfm_helm-0.5.3/src/helm/benchmark/scenarios/vision_language/image2struct}/webpage/jekyll_server.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/mscoco_captioning_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/mscoco_categorization_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/multipanelvqa_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/vision_language/originality_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/wikifact_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/wikitext_103_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/scenarios/wmt_14_scenario.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/slurm_jobs.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/slurm_runner.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/contamination.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_classic.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_instruction_following.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_lite.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_medical.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_mmlu.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_unitxt.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static/schema_vhelm_lite.yaml +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/01-694cb9b7.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/ai21-0eb91ec3.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/aleph-alpha-7ce10034.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/anthropic-70d8bc39.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/bigscience-7f0400c0.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/cohere-3550c6cb.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/crfm-logo-74391ab8.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/eleutherai-b9451114.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/google-06d997ad.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/meta-5580e9f1.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/microsoft-f5ee5016.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/mistral-18e1be23.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/nvidia-86fa75c1.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/openai-3f8653e4.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/overview-74aea3d8.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/react-d4a0b69b.js +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/recharts-6d337683.js +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/tii-24de195c.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/together-a665a35b.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/tremor-54a99cc4.js +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/tsinghua-keg-97d4b395.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/vhelm-framework-cde7618a.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/vhelm-model-6d812526.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/assets/yandex-38e09d70.png +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/static_build/config.js +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/test_data_preprocessor.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/test_run_expander.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/tokenizer_config_registry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/default_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/encoder_decoder_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/ice_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/image_generation/clip_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/image_generation/lexica_search_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/image_generation/openai_dalle_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/image_generation/test_clip_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/image_generation/test_openai_dalle_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/local_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/no_decoding_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_anthropic_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_bloom_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_flan_t5_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_gpt2_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_gpt4_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_gptj_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_gptneox_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_opt_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_palmyra_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_t0pp_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_t511b_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_ul2_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/test_yalm_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/tokenizer_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/window_service_factory.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/benchmark/window_services/yalm_window_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/ai21_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/aleph_alpha_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/auto_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/bedrock_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/bedrock_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/clip_score_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/clip_scorers/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/clip_scorers/base_clip_scorer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/clip_scorers/clip_scorer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/clip_scorers/multilingual_clip_scorer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/cohere_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/cohere_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/gcs_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/google_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/google_translate_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/http_model_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/adobe_vision_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/aleph_alpha_image_generation_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/coglm_strategy.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/coglm_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/direct_sr.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_model.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_sampling.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/iterative_sr.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_model.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_sampling.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2/sr_pipeline/sr_group.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/cogview2_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle2_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle3_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/data.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/configuration.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/modeling.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/partitions.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/processor.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/text.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/model/utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/configuration_vqgan.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/convert_pt_model_to_jax.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/modeling_flax_vqgan.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/dalle_mini_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/deep_floyd_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/huggingface_diffusers_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/image_generation_client_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/lexica_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/stage1/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/stage1/layers.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/stage1/vqgan.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/stage2/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/stage2/layers.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/stage2/transformer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/models/tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/utils/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/utils/config.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/utils/sampling.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle/utils/utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/mindalle_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/nudity_check_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/image_generation/together_image_generation_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/lit_gpt_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/lit_gpt_generate.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/megatron_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/mistral_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/moderation_api_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/open_lm_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/reka_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/simple_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/test_auto_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/test_huggingface_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/test_simple_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/test_together_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/together_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/toxicity_classifier_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vertexai_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/huggingface_vision2seq_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/huggingface_vlm_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/idefics_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/src/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/src/factory.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/src/flamingo.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/src/flamingo_lm.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/src/helpers.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/open_flamingo/src/utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/paligemma_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vision_language/qwen_vlm_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/vllm_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/clients/yi_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/authentication.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/cache.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/cache_backend_config.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/clip_score_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/codec.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/concurrency.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/credentials_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/critique_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/file_caches/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/file_caches/file_cache.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/file_caches/local_file_cache.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/file_caches/test_local_file_cache.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/file_upload_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/general.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/gpu_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/hierarchical_logger.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/image_generation_parameters.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/key_value_store.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/media_object.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/moderations_api_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/multimodal_request_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/nudity_check_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/object_spec.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/optional_dependencies.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/perspective_api_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/test_cache.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/test_codec.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/test_general.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/test_media_object.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/common/tokenization_request.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/config/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/accounts.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/cli.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/critique_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/mechanical_turk_critique_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/mechanical_turk_critique_exporter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/mechanical_turk_critique_importer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/mechanical_turk_utils.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/model_critique_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/scale_critique_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/critique/surge_ai_critique_client.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/query.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/retry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/server.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/services/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/services/remote_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/services/service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/services/test_remote_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/services/test_service.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/test_accounts.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/test_retry.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/token_counters/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/token_counters/auto_token_counter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/proxy/token_counters/token_counter.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/py.typed +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/aleph_alpha_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/anthropic_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/auto_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/caching_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/http_model_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/lit_gpt_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/simple_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/test_anthropic_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/test_cohere_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/test_huggingface_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/test_simple_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/test_yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/tiktoken_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/vertexai_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/yalm_tokenizer_data/__init__.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/yalm_tokenizer_data/test_yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/yalm_tokenizer_data/voc_100b.sp +0 -0
- {crfm_helm-0.5.2 → crfm_helm-0.5.3}/src/helm/tokenizers/yalm_tokenizer_data/yalm_tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crfm-helm
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: Benchmark for language models
|
|
5
5
|
Home-page: https://github.com/stanford-crfm/helm
|
|
6
6
|
Author: Stanford CRFM
|
|
@@ -28,8 +28,7 @@ Requires-Dist: bottle~=0.12.23
|
|
|
28
28
|
Requires-Dist: datasets~=2.17
|
|
29
29
|
Requires-Dist: pyarrow>=11.0.0
|
|
30
30
|
Requires-Dist: pyarrow-hotfix~=0.6
|
|
31
|
-
Requires-Dist: nltk
|
|
32
|
-
Requires-Dist: pyext~=0.7
|
|
31
|
+
Requires-Dist: nltk<3.8.2,~=3.7
|
|
33
32
|
Requires-Dist: rouge-score~=0.1.2
|
|
34
33
|
Requires-Dist: scipy~=1.10
|
|
35
34
|
Requires-Dist: uncertainty-calibration~=0.1.4
|
|
@@ -37,17 +36,17 @@ Requires-Dist: scikit-learn~=1.1
|
|
|
37
36
|
Requires-Dist: transformers~=4.40
|
|
38
37
|
Requires-Dist: torch<3.0.0,>=1.13.1
|
|
39
38
|
Requires-Dist: torchvision<3.0.0,>=0.14.1
|
|
40
|
-
Requires-Dist: google-api-python-client~=2.64
|
|
41
39
|
Provides-Extra: proxy-server
|
|
42
40
|
Requires-Dist: gunicorn~=20.1.0; extra == "proxy-server"
|
|
43
41
|
Provides-Extra: human-evaluation
|
|
44
42
|
Requires-Dist: scaleapi~=2.13.0; extra == "human-evaluation"
|
|
45
43
|
Requires-Dist: surge-api~=1.1.0; extra == "human-evaluation"
|
|
46
44
|
Provides-Extra: scenarios
|
|
47
|
-
Requires-Dist: gdown~=
|
|
45
|
+
Requires-Dist: gdown~=5.1; extra == "scenarios"
|
|
48
46
|
Requires-Dist: sympy~=1.11.1; extra == "scenarios"
|
|
49
47
|
Requires-Dist: xlrd~=2.0.1; extra == "scenarios"
|
|
50
48
|
Provides-Extra: metrics
|
|
49
|
+
Requires-Dist: google-api-python-client~=2.64; extra == "metrics"
|
|
51
50
|
Requires-Dist: numba~=0.56.4; extra == "metrics"
|
|
52
51
|
Requires-Dist: pytrec_eval==0.5; extra == "metrics"
|
|
53
52
|
Requires-Dist: sacrebleu~=2.2.1; extra == "metrics"
|
|
@@ -68,12 +67,18 @@ Requires-Dist: jieba==0.42.1; extra == "cleva"
|
|
|
68
67
|
Requires-Dist: opencc==1.1.6; extra == "cleva"
|
|
69
68
|
Requires-Dist: langdetect==1.0.9; extra == "cleva"
|
|
70
69
|
Provides-Extra: images
|
|
71
|
-
Requires-Dist: accelerate
|
|
70
|
+
Requires-Dist: crfm-helm[accelerate]; extra == "images"
|
|
72
71
|
Requires-Dist: pillow~=10.2; extra == "images"
|
|
73
72
|
Provides-Extra: mongo
|
|
74
73
|
Requires-Dist: pymongo~=4.2; extra == "mongo"
|
|
75
74
|
Provides-Extra: unitxt
|
|
76
75
|
Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
|
|
76
|
+
Provides-Extra: bhasa
|
|
77
|
+
Requires-Dist: pythainlp==5.0.0; extra == "bhasa"
|
|
78
|
+
Requires-Dist: pyonmttok==1.37.0; extra == "bhasa"
|
|
79
|
+
Requires-Dist: sacrebleu~=2.2.1; extra == "bhasa"
|
|
80
|
+
Provides-Extra: accelerate
|
|
81
|
+
Requires-Dist: accelerate~=0.25; extra == "accelerate"
|
|
77
82
|
Provides-Extra: aleph-alpha
|
|
78
83
|
Requires-Dist: aleph-alpha-client~=2.14.0; extra == "aleph-alpha"
|
|
79
84
|
Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
|
|
@@ -100,11 +105,11 @@ Provides-Extra: google
|
|
|
100
105
|
Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
|
|
101
106
|
Provides-Extra: together
|
|
102
107
|
Requires-Dist: together~=1.1; extra == "together"
|
|
103
|
-
Provides-Extra: tsinghua
|
|
104
|
-
Requires-Dist: icetk~=0.0.4; extra == "tsinghua"
|
|
105
108
|
Provides-Extra: yandex
|
|
106
109
|
Requires-Dist: sentencepiece~=0.1.97; extra == "yandex"
|
|
107
110
|
Provides-Extra: models
|
|
111
|
+
Requires-Dist: crfm-helm[ai21]; extra == "models"
|
|
112
|
+
Requires-Dist: crfm-helm[accelerate]; extra == "models"
|
|
108
113
|
Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
|
|
109
114
|
Requires-Dist: crfm-helm[allenai]; extra == "models"
|
|
110
115
|
Requires-Dist: crfm-helm[amazon]; extra == "models"
|
|
@@ -115,7 +120,6 @@ Requires-Dist: crfm-helm[mistral]; extra == "models"
|
|
|
115
120
|
Requires-Dist: crfm-helm[openai]; extra == "models"
|
|
116
121
|
Requires-Dist: crfm-helm[reka]; extra == "models"
|
|
117
122
|
Requires-Dist: crfm-helm[together]; extra == "models"
|
|
118
|
-
Requires-Dist: crfm-helm[tsinghua]; extra == "models"
|
|
119
123
|
Requires-Dist: crfm-helm[yandex]; extra == "models"
|
|
120
124
|
Requires-Dist: crfm-helm[openvino]; extra == "models"
|
|
121
125
|
Provides-Extra: reka
|
|
@@ -124,27 +128,28 @@ Provides-Extra: vlm
|
|
|
124
128
|
Requires-Dist: crfm-helm[openai]; extra == "vlm"
|
|
125
129
|
Requires-Dist: einops~=0.7.0; extra == "vlm"
|
|
126
130
|
Requires-Dist: einops-exts~=0.0.4; extra == "vlm"
|
|
127
|
-
Requires-Dist: open-clip-torch~=2.24
|
|
128
|
-
Requires-Dist: torch~=2.1
|
|
131
|
+
Requires-Dist: open-clip-torch~=2.24; extra == "vlm"
|
|
132
|
+
Requires-Dist: torch~=2.1; extra == "vlm"
|
|
129
133
|
Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
|
|
130
134
|
Requires-Dist: scipy~=1.10; extra == "vlm"
|
|
131
135
|
Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
|
|
132
136
|
Requires-Dist: crfm-helm[reka]; extra == "vlm"
|
|
133
137
|
Requires-Dist: crfm-helm[images]; extra == "vlm"
|
|
134
|
-
Requires-Dist: crfm-helm[
|
|
138
|
+
Requires-Dist: crfm-helm[image2struct]; extra == "vlm"
|
|
135
139
|
Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
|
|
136
|
-
Provides-Extra:
|
|
137
|
-
Requires-Dist: crfm-helm[images]; extra == "
|
|
138
|
-
Requires-Dist: latex~=0.7.0; extra == "
|
|
139
|
-
Requires-Dist: pdf2image~=1.16.3; extra == "
|
|
140
|
-
Requires-Dist: selenium~=4.17.2; extra == "
|
|
141
|
-
Requires-Dist: html2text~=2024.2.26; extra == "
|
|
142
|
-
Requires-Dist: opencv-python~=4.7.0.68; extra == "
|
|
143
|
-
Requires-Dist: lpips~=0.1.4; extra == "
|
|
144
|
-
Requires-Dist: imagehash~=4.3.1; extra == "
|
|
140
|
+
Provides-Extra: image2struct
|
|
141
|
+
Requires-Dist: crfm-helm[images]; extra == "image2struct"
|
|
142
|
+
Requires-Dist: latex~=0.7.0; extra == "image2struct"
|
|
143
|
+
Requires-Dist: pdf2image~=1.16.3; extra == "image2struct"
|
|
144
|
+
Requires-Dist: selenium~=4.17.2; extra == "image2struct"
|
|
145
|
+
Requires-Dist: html2text~=2024.2.26; extra == "image2struct"
|
|
146
|
+
Requires-Dist: opencv-python~=4.7.0.68; extra == "image2struct"
|
|
147
|
+
Requires-Dist: lpips~=0.1.4; extra == "image2struct"
|
|
148
|
+
Requires-Dist: imagehash~=4.3.1; extra == "image2struct"
|
|
145
149
|
Provides-Extra: heim
|
|
146
|
-
Requires-Dist: gdown~=
|
|
150
|
+
Requires-Dist: gdown~=5.1; extra == "heim"
|
|
147
151
|
Requires-Dist: diffusers~=0.24.0; extra == "heim"
|
|
152
|
+
Requires-Dist: icetk~=0.0.4; extra == "heim"
|
|
148
153
|
Requires-Dist: jax~=0.4.13; extra == "heim"
|
|
149
154
|
Requires-Dist: jaxlib~=0.4.13; extra == "heim"
|
|
150
155
|
Requires-Dist: crfm-helm[openai]; extra == "heim"
|
|
@@ -168,6 +173,7 @@ Requires-Dist: tensorflow~=2.11.1; extra == "heim"
|
|
|
168
173
|
Requires-Dist: timm~=0.6.12; extra == "heim"
|
|
169
174
|
Requires-Dist: torch-fidelity~=0.3.0; extra == "heim"
|
|
170
175
|
Requires-Dist: torchmetrics~=0.11.1; extra == "heim"
|
|
176
|
+
Requires-Dist: scikit-image~=0.21.0; extra == "heim"
|
|
171
177
|
Requires-Dist: crfm-helm[images]; extra == "heim"
|
|
172
178
|
Provides-Extra: all
|
|
173
179
|
Requires-Dist: crfm-helm[proxy-server]; extra == "all"
|
|
@@ -183,6 +189,7 @@ Requires-Dist: crfm-helm[models]; extra == "all"
|
|
|
183
189
|
Requires-Dist: crfm-helm[mongo]; extra == "all"
|
|
184
190
|
Requires-Dist: crfm-helm[heim]; extra == "all"
|
|
185
191
|
Requires-Dist: crfm-helm[vlm]; extra == "all"
|
|
192
|
+
Requires-Dist: crfm-helm[bhasa]; extra == "all"
|
|
186
193
|
Provides-Extra: dev
|
|
187
194
|
Requires-Dist: pytest~=7.2.0; extra == "dev"
|
|
188
195
|
Requires-Dist: pre-commit~=2.20.0; extra == "dev"
|
|
@@ -209,39 +216,6 @@ Welcome! The **`crfm-helm`** Python package contains code used in the **Holistic
|
|
|
209
216
|
|
|
210
217
|
To get started, refer to [the documentation on Read the Docs](https://crfm-helm.readthedocs.io/) for how to install and run the package.
|
|
211
218
|
|
|
212
|
-
## Directory Structure
|
|
213
|
-
|
|
214
|
-
The directory structure for this repo is as follows
|
|
215
|
-
|
|
216
|
-
```
|
|
217
|
-
├── docs # MD used to generate readthedocs
|
|
218
|
-
│
|
|
219
|
-
├── scripts # Python utility scripts for HELM
|
|
220
|
-
│ ├── cache
|
|
221
|
-
│ ├── data_overlap # Calculate train test overlap
|
|
222
|
-
│ │ ├── common
|
|
223
|
-
│ │ ├── scenarios
|
|
224
|
-
│ │ └── test
|
|
225
|
-
│ ├── efficiency
|
|
226
|
-
│ ├── fact_completion
|
|
227
|
-
│ ├── offline_eval
|
|
228
|
-
│ └── scale
|
|
229
|
-
└── src
|
|
230
|
-
├── helm # Benchmarking Scripts for HELM
|
|
231
|
-
│ │
|
|
232
|
-
│ ├── benchmark # Main Python code for running HELM
|
|
233
|
-
│ │ │
|
|
234
|
-
│ │ └── static # Current JS (Jquery) code for rendering front-end
|
|
235
|
-
│ │ │
|
|
236
|
-
│ │ └── ...
|
|
237
|
-
│ │
|
|
238
|
-
│ ├── common # Additional Python code for running HELM
|
|
239
|
-
│ │
|
|
240
|
-
│ └── proxy # Python code for external web requests
|
|
241
|
-
│
|
|
242
|
-
└── helm-frontend # New React Front-end
|
|
243
|
-
```
|
|
244
|
-
|
|
245
219
|
# Holistic Evaluation of Text-To-Image Models
|
|
246
220
|
|
|
247
221
|
<img src="https://github.com/stanford-crfm/helm/raw/heim/src/helm/benchmark/static/heim/images/heim-logo.png" alt="" width="800"/>
|
|
@@ -17,39 +17,6 @@ Welcome! The **`crfm-helm`** Python package contains code used in the **Holistic
|
|
|
17
17
|
|
|
18
18
|
To get started, refer to [the documentation on Read the Docs](https://crfm-helm.readthedocs.io/) for how to install and run the package.
|
|
19
19
|
|
|
20
|
-
## Directory Structure
|
|
21
|
-
|
|
22
|
-
The directory structure for this repo is as follows
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
├── docs # MD used to generate readthedocs
|
|
26
|
-
│
|
|
27
|
-
├── scripts # Python utility scripts for HELM
|
|
28
|
-
│ ├── cache
|
|
29
|
-
│ ├── data_overlap # Calculate train test overlap
|
|
30
|
-
│ │ ├── common
|
|
31
|
-
│ │ ├── scenarios
|
|
32
|
-
│ │ └── test
|
|
33
|
-
│ ├── efficiency
|
|
34
|
-
│ ├── fact_completion
|
|
35
|
-
│ ├── offline_eval
|
|
36
|
-
│ └── scale
|
|
37
|
-
└── src
|
|
38
|
-
├── helm # Benchmarking Scripts for HELM
|
|
39
|
-
│ │
|
|
40
|
-
│ ├── benchmark # Main Python code for running HELM
|
|
41
|
-
│ │ │
|
|
42
|
-
│ │ └── static # Current JS (Jquery) code for rendering front-end
|
|
43
|
-
│ │ │
|
|
44
|
-
│ │ └── ...
|
|
45
|
-
│ │
|
|
46
|
-
│ ├── common # Additional Python code for running HELM
|
|
47
|
-
│ │
|
|
48
|
-
│ └── proxy # Python code for external web requests
|
|
49
|
-
│
|
|
50
|
-
└── helm-frontend # New React Front-end
|
|
51
|
-
```
|
|
52
|
-
|
|
53
20
|
# Holistic Evaluation of Text-To-Image Models
|
|
54
21
|
|
|
55
22
|
<img src="https://github.com/stanford-crfm/helm/raw/heim/src/helm/benchmark/static/heim/images/heim-logo.png" alt="" width="800"/>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = crfm-helm
|
|
3
|
-
version = 0.5.
|
|
3
|
+
version = 0.5.3
|
|
4
4
|
author = Stanford CRFM
|
|
5
5
|
author_email = contact-crfm@stanford.edu
|
|
6
6
|
description = Benchmark for language models
|
|
@@ -39,8 +39,7 @@ install_requires =
|
|
|
39
39
|
pyarrow>=11.0.0 # Pinned transitive dependency for datasets; workaround for #1026
|
|
40
40
|
pyarrow-hotfix~=0.6 # Hotfix for CVE-2023-47248
|
|
41
41
|
|
|
42
|
-
nltk~=3.7
|
|
43
|
-
pyext~=0.7
|
|
42
|
+
nltk~=3.7,<3.8.2 # See https://github.com/stanford-crfm/helm/issues/2926
|
|
44
43
|
rouge-score~=0.1.2
|
|
45
44
|
scipy~=1.10
|
|
46
45
|
uncertainty-calibration~=0.1.4
|
|
@@ -49,8 +48,6 @@ install_requires =
|
|
|
49
48
|
transformers~=4.40 # For anthropic_client, vision_language.huggingface_vlm_client, huggingface_client, huggingface_tokenizer, test_openai_token_cost_estimator, model_summac (via summarization_metrics)
|
|
50
49
|
torch>=1.13.1,<3.0.0 # For huggingface_client, yalm_tokenizer, model_summac (via summarization_metrics)
|
|
51
50
|
torchvision>=0.14.1,<3.0.0 # For huggingface_client, yalm_tokenizer, model_summac (via summarization_metrics)
|
|
52
|
-
|
|
53
|
-
google-api-python-client~=2.64 # For perspective_api_client via toxicity_metrics
|
|
54
51
|
|
|
55
52
|
[options.extras_require]
|
|
56
53
|
proxy-server =
|
|
@@ -59,10 +56,11 @@ human-evaluation =
|
|
|
59
56
|
scaleapi~=2.13.0
|
|
60
57
|
surge-api~=1.1.0
|
|
61
58
|
scenarios =
|
|
62
|
-
gdown~=
|
|
59
|
+
gdown~=5.1 # For disinformation_scenario, med_mcqa_scenario, med_qa_scenario: used by ensure_file_downloaded()
|
|
63
60
|
sympy~=1.11.1 # For numeracy_scenario
|
|
64
61
|
xlrd~=2.0.1 # For ice_scenario: used by pandas.read_excel()
|
|
65
62
|
metrics =
|
|
63
|
+
google-api-python-client~=2.64 # For perspective_api_client via toxicity_metrics
|
|
66
64
|
numba~=0.56.4 # For copyright_metrics
|
|
67
65
|
pytrec_eval==0.5 # For ranking_metrics
|
|
68
66
|
sacrebleu~=2.2.1 # For disinformation_metrics, machine_translation_metrics
|
|
@@ -83,12 +81,18 @@ cleva =
|
|
|
83
81
|
opencc==1.1.6
|
|
84
82
|
langdetect==1.0.9
|
|
85
83
|
images =
|
|
86
|
-
accelerate
|
|
84
|
+
crfm-helm[accelerate]
|
|
87
85
|
pillow~=10.2
|
|
88
86
|
mongo =
|
|
89
87
|
pymongo~=4.2
|
|
90
88
|
unitxt =
|
|
91
89
|
evaluate~=0.4.1
|
|
90
|
+
bhasa =
|
|
91
|
+
pythainlp==5.0.0
|
|
92
|
+
pyonmttok==1.37.0
|
|
93
|
+
sacrebleu~=2.2.1
|
|
94
|
+
accelerate =
|
|
95
|
+
accelerate~=0.25
|
|
92
96
|
aleph-alpha =
|
|
93
97
|
aleph-alpha-client~=2.14.0
|
|
94
98
|
tokenizers>=0.13.3
|
|
@@ -115,11 +119,11 @@ google =
|
|
|
115
119
|
google-cloud-aiplatform~=1.48
|
|
116
120
|
together =
|
|
117
121
|
together~=1.1
|
|
118
|
-
tsinghua =
|
|
119
|
-
icetk~=0.0.4
|
|
120
122
|
yandex =
|
|
121
123
|
sentencepiece~=0.1.97
|
|
122
124
|
models =
|
|
125
|
+
crfm-helm[ai21]
|
|
126
|
+
crfm-helm[accelerate]
|
|
123
127
|
crfm-helm[aleph-alpha]
|
|
124
128
|
crfm-helm[allenai]
|
|
125
129
|
crfm-helm[amazon]
|
|
@@ -130,7 +134,6 @@ models =
|
|
|
130
134
|
crfm-helm[openai]
|
|
131
135
|
crfm-helm[reka]
|
|
132
136
|
crfm-helm[together]
|
|
133
|
-
crfm-helm[tsinghua]
|
|
134
137
|
crfm-helm[yandex]
|
|
135
138
|
crfm-helm[openvino]
|
|
136
139
|
reka =
|
|
@@ -140,9 +143,9 @@ vlm =
|
|
|
140
143
|
|
|
141
144
|
einops~=0.7.0
|
|
142
145
|
einops-exts~=0.0.4
|
|
143
|
-
open-clip-torch~=2.24
|
|
146
|
+
open-clip-torch~=2.24
|
|
144
147
|
|
|
145
|
-
torch~=2.1
|
|
148
|
+
torch~=2.1
|
|
146
149
|
|
|
147
150
|
transformers_stream_generator~=0.0.4
|
|
148
151
|
scipy~=1.10
|
|
@@ -151,10 +154,10 @@ vlm =
|
|
|
151
154
|
crfm-helm[reka]
|
|
152
155
|
|
|
153
156
|
crfm-helm[images]
|
|
154
|
-
crfm-helm[
|
|
157
|
+
crfm-helm[image2struct]
|
|
155
158
|
|
|
156
159
|
pycocoevalcap~=1.2
|
|
157
|
-
|
|
160
|
+
image2struct =
|
|
158
161
|
crfm-helm[images]
|
|
159
162
|
|
|
160
163
|
latex~=0.7.0
|
|
@@ -167,9 +170,10 @@ image2structure =
|
|
|
167
170
|
lpips~=0.1.4
|
|
168
171
|
imagehash~=4.3.1 # for caching
|
|
169
172
|
heim =
|
|
170
|
-
gdown~=
|
|
173
|
+
gdown~=5.1
|
|
171
174
|
|
|
172
175
|
diffusers~=0.24.0
|
|
176
|
+
icetk~=0.0.4
|
|
173
177
|
jax~=0.4.13
|
|
174
178
|
jaxlib~=0.4.13
|
|
175
179
|
crfm-helm[openai]
|
|
@@ -198,6 +202,8 @@ heim =
|
|
|
198
202
|
torch-fidelity~=0.3.0
|
|
199
203
|
torchmetrics~=0.11.1
|
|
200
204
|
|
|
205
|
+
scikit-image~=0.21.0
|
|
206
|
+
|
|
201
207
|
crfm-helm[images]
|
|
202
208
|
all =
|
|
203
209
|
crfm-helm[proxy-server]
|
|
@@ -213,6 +219,7 @@ all =
|
|
|
213
219
|
crfm-helm[mongo]
|
|
214
220
|
crfm-helm[heim]
|
|
215
221
|
crfm-helm[vlm]
|
|
222
|
+
crfm-helm[bhasa]
|
|
216
223
|
dev =
|
|
217
224
|
pytest~=7.2.0
|
|
218
225
|
pre-commit~=2.20.0
|
|
@@ -252,9 +259,10 @@ exclude = dalle_mini|mindalle|open_flamingo
|
|
|
252
259
|
|
|
253
260
|
[tool:pytest]
|
|
254
261
|
addopts =
|
|
255
|
-
-m 'not models'
|
|
262
|
+
-m 'not models and not scenarios'
|
|
256
263
|
markers =
|
|
257
264
|
models
|
|
265
|
+
scenarios
|
|
258
266
|
|
|
259
267
|
[egg_info]
|
|
260
268
|
tag_build =
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crfm-helm
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: Benchmark for language models
|
|
5
5
|
Home-page: https://github.com/stanford-crfm/helm
|
|
6
6
|
Author: Stanford CRFM
|
|
@@ -28,8 +28,7 @@ Requires-Dist: bottle~=0.12.23
|
|
|
28
28
|
Requires-Dist: datasets~=2.17
|
|
29
29
|
Requires-Dist: pyarrow>=11.0.0
|
|
30
30
|
Requires-Dist: pyarrow-hotfix~=0.6
|
|
31
|
-
Requires-Dist: nltk
|
|
32
|
-
Requires-Dist: pyext~=0.7
|
|
31
|
+
Requires-Dist: nltk<3.8.2,~=3.7
|
|
33
32
|
Requires-Dist: rouge-score~=0.1.2
|
|
34
33
|
Requires-Dist: scipy~=1.10
|
|
35
34
|
Requires-Dist: uncertainty-calibration~=0.1.4
|
|
@@ -37,17 +36,17 @@ Requires-Dist: scikit-learn~=1.1
|
|
|
37
36
|
Requires-Dist: transformers~=4.40
|
|
38
37
|
Requires-Dist: torch<3.0.0,>=1.13.1
|
|
39
38
|
Requires-Dist: torchvision<3.0.0,>=0.14.1
|
|
40
|
-
Requires-Dist: google-api-python-client~=2.64
|
|
41
39
|
Provides-Extra: proxy-server
|
|
42
40
|
Requires-Dist: gunicorn~=20.1.0; extra == "proxy-server"
|
|
43
41
|
Provides-Extra: human-evaluation
|
|
44
42
|
Requires-Dist: scaleapi~=2.13.0; extra == "human-evaluation"
|
|
45
43
|
Requires-Dist: surge-api~=1.1.0; extra == "human-evaluation"
|
|
46
44
|
Provides-Extra: scenarios
|
|
47
|
-
Requires-Dist: gdown~=
|
|
45
|
+
Requires-Dist: gdown~=5.1; extra == "scenarios"
|
|
48
46
|
Requires-Dist: sympy~=1.11.1; extra == "scenarios"
|
|
49
47
|
Requires-Dist: xlrd~=2.0.1; extra == "scenarios"
|
|
50
48
|
Provides-Extra: metrics
|
|
49
|
+
Requires-Dist: google-api-python-client~=2.64; extra == "metrics"
|
|
51
50
|
Requires-Dist: numba~=0.56.4; extra == "metrics"
|
|
52
51
|
Requires-Dist: pytrec_eval==0.5; extra == "metrics"
|
|
53
52
|
Requires-Dist: sacrebleu~=2.2.1; extra == "metrics"
|
|
@@ -68,12 +67,18 @@ Requires-Dist: jieba==0.42.1; extra == "cleva"
|
|
|
68
67
|
Requires-Dist: opencc==1.1.6; extra == "cleva"
|
|
69
68
|
Requires-Dist: langdetect==1.0.9; extra == "cleva"
|
|
70
69
|
Provides-Extra: images
|
|
71
|
-
Requires-Dist: accelerate
|
|
70
|
+
Requires-Dist: crfm-helm[accelerate]; extra == "images"
|
|
72
71
|
Requires-Dist: pillow~=10.2; extra == "images"
|
|
73
72
|
Provides-Extra: mongo
|
|
74
73
|
Requires-Dist: pymongo~=4.2; extra == "mongo"
|
|
75
74
|
Provides-Extra: unitxt
|
|
76
75
|
Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
|
|
76
|
+
Provides-Extra: bhasa
|
|
77
|
+
Requires-Dist: pythainlp==5.0.0; extra == "bhasa"
|
|
78
|
+
Requires-Dist: pyonmttok==1.37.0; extra == "bhasa"
|
|
79
|
+
Requires-Dist: sacrebleu~=2.2.1; extra == "bhasa"
|
|
80
|
+
Provides-Extra: accelerate
|
|
81
|
+
Requires-Dist: accelerate~=0.25; extra == "accelerate"
|
|
77
82
|
Provides-Extra: aleph-alpha
|
|
78
83
|
Requires-Dist: aleph-alpha-client~=2.14.0; extra == "aleph-alpha"
|
|
79
84
|
Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
|
|
@@ -100,11 +105,11 @@ Provides-Extra: google
|
|
|
100
105
|
Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
|
|
101
106
|
Provides-Extra: together
|
|
102
107
|
Requires-Dist: together~=1.1; extra == "together"
|
|
103
|
-
Provides-Extra: tsinghua
|
|
104
|
-
Requires-Dist: icetk~=0.0.4; extra == "tsinghua"
|
|
105
108
|
Provides-Extra: yandex
|
|
106
109
|
Requires-Dist: sentencepiece~=0.1.97; extra == "yandex"
|
|
107
110
|
Provides-Extra: models
|
|
111
|
+
Requires-Dist: crfm-helm[ai21]; extra == "models"
|
|
112
|
+
Requires-Dist: crfm-helm[accelerate]; extra == "models"
|
|
108
113
|
Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
|
|
109
114
|
Requires-Dist: crfm-helm[allenai]; extra == "models"
|
|
110
115
|
Requires-Dist: crfm-helm[amazon]; extra == "models"
|
|
@@ -115,7 +120,6 @@ Requires-Dist: crfm-helm[mistral]; extra == "models"
|
|
|
115
120
|
Requires-Dist: crfm-helm[openai]; extra == "models"
|
|
116
121
|
Requires-Dist: crfm-helm[reka]; extra == "models"
|
|
117
122
|
Requires-Dist: crfm-helm[together]; extra == "models"
|
|
118
|
-
Requires-Dist: crfm-helm[tsinghua]; extra == "models"
|
|
119
123
|
Requires-Dist: crfm-helm[yandex]; extra == "models"
|
|
120
124
|
Requires-Dist: crfm-helm[openvino]; extra == "models"
|
|
121
125
|
Provides-Extra: reka
|
|
@@ -124,27 +128,28 @@ Provides-Extra: vlm
|
|
|
124
128
|
Requires-Dist: crfm-helm[openai]; extra == "vlm"
|
|
125
129
|
Requires-Dist: einops~=0.7.0; extra == "vlm"
|
|
126
130
|
Requires-Dist: einops-exts~=0.0.4; extra == "vlm"
|
|
127
|
-
Requires-Dist: open-clip-torch~=2.24
|
|
128
|
-
Requires-Dist: torch~=2.1
|
|
131
|
+
Requires-Dist: open-clip-torch~=2.24; extra == "vlm"
|
|
132
|
+
Requires-Dist: torch~=2.1; extra == "vlm"
|
|
129
133
|
Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
|
|
130
134
|
Requires-Dist: scipy~=1.10; extra == "vlm"
|
|
131
135
|
Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
|
|
132
136
|
Requires-Dist: crfm-helm[reka]; extra == "vlm"
|
|
133
137
|
Requires-Dist: crfm-helm[images]; extra == "vlm"
|
|
134
|
-
Requires-Dist: crfm-helm[
|
|
138
|
+
Requires-Dist: crfm-helm[image2struct]; extra == "vlm"
|
|
135
139
|
Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
|
|
136
|
-
Provides-Extra:
|
|
137
|
-
Requires-Dist: crfm-helm[images]; extra == "
|
|
138
|
-
Requires-Dist: latex~=0.7.0; extra == "
|
|
139
|
-
Requires-Dist: pdf2image~=1.16.3; extra == "
|
|
140
|
-
Requires-Dist: selenium~=4.17.2; extra == "
|
|
141
|
-
Requires-Dist: html2text~=2024.2.26; extra == "
|
|
142
|
-
Requires-Dist: opencv-python~=4.7.0.68; extra == "
|
|
143
|
-
Requires-Dist: lpips~=0.1.4; extra == "
|
|
144
|
-
Requires-Dist: imagehash~=4.3.1; extra == "
|
|
140
|
+
Provides-Extra: image2struct
|
|
141
|
+
Requires-Dist: crfm-helm[images]; extra == "image2struct"
|
|
142
|
+
Requires-Dist: latex~=0.7.0; extra == "image2struct"
|
|
143
|
+
Requires-Dist: pdf2image~=1.16.3; extra == "image2struct"
|
|
144
|
+
Requires-Dist: selenium~=4.17.2; extra == "image2struct"
|
|
145
|
+
Requires-Dist: html2text~=2024.2.26; extra == "image2struct"
|
|
146
|
+
Requires-Dist: opencv-python~=4.7.0.68; extra == "image2struct"
|
|
147
|
+
Requires-Dist: lpips~=0.1.4; extra == "image2struct"
|
|
148
|
+
Requires-Dist: imagehash~=4.3.1; extra == "image2struct"
|
|
145
149
|
Provides-Extra: heim
|
|
146
|
-
Requires-Dist: gdown~=
|
|
150
|
+
Requires-Dist: gdown~=5.1; extra == "heim"
|
|
147
151
|
Requires-Dist: diffusers~=0.24.0; extra == "heim"
|
|
152
|
+
Requires-Dist: icetk~=0.0.4; extra == "heim"
|
|
148
153
|
Requires-Dist: jax~=0.4.13; extra == "heim"
|
|
149
154
|
Requires-Dist: jaxlib~=0.4.13; extra == "heim"
|
|
150
155
|
Requires-Dist: crfm-helm[openai]; extra == "heim"
|
|
@@ -168,6 +173,7 @@ Requires-Dist: tensorflow~=2.11.1; extra == "heim"
|
|
|
168
173
|
Requires-Dist: timm~=0.6.12; extra == "heim"
|
|
169
174
|
Requires-Dist: torch-fidelity~=0.3.0; extra == "heim"
|
|
170
175
|
Requires-Dist: torchmetrics~=0.11.1; extra == "heim"
|
|
176
|
+
Requires-Dist: scikit-image~=0.21.0; extra == "heim"
|
|
171
177
|
Requires-Dist: crfm-helm[images]; extra == "heim"
|
|
172
178
|
Provides-Extra: all
|
|
173
179
|
Requires-Dist: crfm-helm[proxy-server]; extra == "all"
|
|
@@ -183,6 +189,7 @@ Requires-Dist: crfm-helm[models]; extra == "all"
|
|
|
183
189
|
Requires-Dist: crfm-helm[mongo]; extra == "all"
|
|
184
190
|
Requires-Dist: crfm-helm[heim]; extra == "all"
|
|
185
191
|
Requires-Dist: crfm-helm[vlm]; extra == "all"
|
|
192
|
+
Requires-Dist: crfm-helm[bhasa]; extra == "all"
|
|
186
193
|
Provides-Extra: dev
|
|
187
194
|
Requires-Dist: pytest~=7.2.0; extra == "dev"
|
|
188
195
|
Requires-Dist: pre-commit~=2.20.0; extra == "dev"
|
|
@@ -209,39 +216,6 @@ Welcome! The **`crfm-helm`** Python package contains code used in the **Holistic
|
|
|
209
216
|
|
|
210
217
|
To get started, refer to [the documentation on Read the Docs](https://crfm-helm.readthedocs.io/) for how to install and run the package.
|
|
211
218
|
|
|
212
|
-
## Directory Structure
|
|
213
|
-
|
|
214
|
-
The directory structure for this repo is as follows
|
|
215
|
-
|
|
216
|
-
```
|
|
217
|
-
├── docs # MD used to generate readthedocs
|
|
218
|
-
│
|
|
219
|
-
├── scripts # Python utility scripts for HELM
|
|
220
|
-
│ ├── cache
|
|
221
|
-
│ ├── data_overlap # Calculate train test overlap
|
|
222
|
-
│ │ ├── common
|
|
223
|
-
│ │ ├── scenarios
|
|
224
|
-
│ │ └── test
|
|
225
|
-
│ ├── efficiency
|
|
226
|
-
│ ├── fact_completion
|
|
227
|
-
│ ├── offline_eval
|
|
228
|
-
│ └── scale
|
|
229
|
-
└── src
|
|
230
|
-
├── helm # Benchmarking Scripts for HELM
|
|
231
|
-
│ │
|
|
232
|
-
│ ├── benchmark # Main Python code for running HELM
|
|
233
|
-
│ │ │
|
|
234
|
-
│ │ └── static # Current JS (Jquery) code for rendering front-end
|
|
235
|
-
│ │ │
|
|
236
|
-
│ │ └── ...
|
|
237
|
-
│ │
|
|
238
|
-
│ ├── common # Additional Python code for running HELM
|
|
239
|
-
│ │
|
|
240
|
-
│ └── proxy # Python code for external web requests
|
|
241
|
-
│
|
|
242
|
-
└── helm-frontend # New React Front-end
|
|
243
|
-
```
|
|
244
|
-
|
|
245
219
|
# Holistic Evaluation of Text-To-Image Models
|
|
246
220
|
|
|
247
221
|
<img src="https://github.com/stanford-crfm/helm/raw/heim/src/helm/benchmark/static/heim/images/heim-logo.png" alt="" width="800"/>
|