crfm-helm 0.5.1__tar.gz → 0.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {crfm_helm-0.5.1/src/crfm_helm.egg-info → crfm_helm-0.5.2}/PKG-INFO +13 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/setup.cfg +14 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2/src/crfm_helm.egg-info}/PKG-INFO +13 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/SOURCES.txt +36 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/requires.txt +15 -2
- crfm_helm-0.5.2/src/helm/benchmark/adaptation/adapter_spec.py +129 -0
- crfm_helm-0.5.2/src/helm/benchmark/annotation/air_bench_annotator.py +64 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/annotator_factory.py +6 -0
- crfm_helm-0.5.2/src/helm/benchmark/annotation/live_qa_annotator.py +84 -0
- crfm_helm-0.5.2/src/helm/benchmark/annotation/medication_qa_annotator.py +81 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/translate_perturbation.py +1 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/huggingface_registration.py +16 -6
- crfm_helm-0.5.2/src/helm/benchmark/metrics/air_bench_metrics.py +56 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/fin_qa_metrics.py +60 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/fin_qa_metrics_helper.py +398 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py +126 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/instruction_following_critique_metrics.py +1 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/live_qa_metrics.py +23 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/medication_qa_metrics.py +23 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py +185 -0
- crfm_helm-0.5.2/src/helm/benchmark/metrics/reka_vibe_critique_metrics.py +158 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/unitxt_metrics.py +20 -10
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/emd_utils.py +4 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/image_metrics.py +29 -71
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/schema.py +54 -4
- crfm_helm-0.5.2/src/helm/benchmark/presentation/test_schema.py +11 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run.py +16 -2
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_expander.py +77 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_spec_factory.py +4 -0
- crfm_helm-0.5.2/src/helm/benchmark/run_specs/air_bench_run_specs.py +40 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/classic_run_specs.py +15 -11
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/decodingtrust_run_specs.py +3 -1
- crfm_helm-0.5.2/src/helm/benchmark/run_specs/experimental_run_specs.py +33 -0
- crfm_helm-0.5.2/src/helm/benchmark/run_specs/finance_run_specs.py +33 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/vlm_run_specs.py +168 -45
- crfm_helm-0.5.2/src/helm/benchmark/scenarios/air_bench_scenario.py +50 -0
- crfm_helm-0.5.2/src/helm/benchmark/scenarios/ci_mcqa_scenario.py +80 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/entity_data_imputation_scenario.py +8 -2
- crfm_helm-0.5.2/src/helm/benchmark/scenarios/fin_qa_scenario.py +117 -0
- crfm_helm-0.5.2/src/helm/benchmark/scenarios/test_air_bench_scenario.py +27 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/bingo_scenario.py +3 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/image2structure_scenario.py +13 -2
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/latex_scenario.py +1 -5
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/musicsheet_scenario.py +0 -4
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage_scenario.py +4 -2
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/pairs_scenario.py +6 -5
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py +3 -3
- crfm_helm-0.5.2/src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py +95 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_air_bench.yaml +3149 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_classic.yaml +3 -59
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_finance.yaml +143 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_image2structure.yaml +447 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_instruction_following.yaml +3 -52
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_lite.yaml +3 -61
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_medical.yaml +255 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_mmlu.yaml +3 -61
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_tables.yaml +200 -0
- crfm_helm-0.5.2/src/helm/benchmark/static/schema_thai.yaml +223 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_unitxt.yaml +3 -61
- crfm_helm-0.5.1/src/helm/benchmark/static/schema_vlm.yaml → crfm_helm-0.5.2/src/helm/benchmark/static/schema_vhelm.yaml +294 -293
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/schema_vhelm_lite.yaml +4 -59
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/index-30dbceba.js +10 -0
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/index-66b02d40.css +1 -0
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/overview-74aea3d8.png +0 -0
- crfm_helm-0.5.2/src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/index.html +2 -2
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/anthropic_client.py +43 -9
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/auto_client.py +11 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/client.py +24 -7
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/cohere_client.py +98 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/huggingface_client.py +71 -12
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/openai_client.py +9 -2
- crfm_helm-0.5.2/src/helm/clients/reka_client.py +189 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/test_client.py +3 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/test_huggingface_client.py +19 -3
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/test_together_client.py +72 -2
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/together_client.py +129 -23
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vertexai_client.py +62 -18
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/huggingface_vlm_client.py +1 -0
- crfm_helm-0.5.2/src/helm/clients/vision_language/paligemma_client.py +146 -0
- crfm_helm-0.5.2/src/helm/clients/vision_language/palmyra_vision_client.py +84 -0
- crfm_helm-0.5.2/src/helm/clients/yi_client.py +31 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/critique_request.py +10 -1
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/images_utils.py +19 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/config/model_deployments.yaml +412 -18
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/config/model_metadata.yaml +447 -25
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/config/tokenizer_configs.yaml +93 -1
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/model_critique_client.py +32 -4
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/services/server_service.py +1 -1
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/auto_tokenizer.py +1 -1
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/cohere_tokenizer.py +44 -2
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/huggingface_tokenizer.py +36 -13
- crfm_helm-0.5.2/src/helm/tokenizers/test_cohere_tokenizer.py +39 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/test_huggingface_tokenizer.py +5 -1
- crfm_helm-0.5.1/src/helm/benchmark/adaptation/adapter_spec.py +0 -128
- crfm_helm-0.5.1/src/helm/benchmark/static/schema_image2structure.yaml +0 -304
- crfm_helm-0.5.1/src/helm/benchmark/static_build/assets/index-737eef9e.js +0 -10
- crfm_helm-0.5.1/src/helm/benchmark/static_build/assets/index-878a1094.css +0 -1
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/LICENSE +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/MANIFEST.in +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/README.md +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/docs/tutorial.md +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/pyproject.toml +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/dependency_links.txt +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/entry_points.txt +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/not-zip-safe +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/crfm_helm.egg-info/top_level.txt +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/adapter_factory.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/binary_ranking_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/generation_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/in_context_learning_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/language_modeling_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/generation_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/in_context_learning_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/multimodal_prompt.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multiple_choice_calibrated_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multiple_choice_joint_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/multiple_choice_separate_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_generation_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_language_modeling_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/adapters/test_multiple_choice_joint_adapter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/common_adapter_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/prompt.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/request_state.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/adaptation/scenario_state.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/annotator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/image_compiler_annotator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/latex_compiler_annotator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/lilypond_compiler_annotator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/image2structure/webpage_compiler_annotator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/test_annotator_factory.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation/test_dummy_annotator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/annotation_executor.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/cleva_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/contraction_expansion_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/contrast_sets_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/correct_to_misspelling.json +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/data_augmenter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/dialect_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/extra_space_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/filler_words_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/gender_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/lowercase_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/mild_mix_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/misspelling_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/person_name_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/perturbation_description.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/space_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/suffix_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/synonym_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/test_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/augmentations/typos_perturbation.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/config_registry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/data_overlap_spec.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/export_scenario_text.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/data_overlap/light_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/data_preprocessor.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/efficiency_data/training_efficiency.json +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/executor.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/basic_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/bbq_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/bias_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/bias_word_lists.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/classification_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/cleva_accuracy_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/cleva_harms_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/cleva_metrics_helper.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/code_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/code_metrics_helper.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/common_metric_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/copyright_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_fairness_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_ood_knowledge_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_privacy_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/decodingtrust_stereotype_bias_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/disinformation_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/dry_run_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/efficiency_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/evaluate_instances_metric.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/evaluate_reference_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/aesthetics_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/aesthetics_scorer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/clip_score_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/denoised_runtime_metric.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detection_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detectors/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detectors/base_detector.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/detectors/vitdet.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/efficiency_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fidelity_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension/fractal_dimension_util.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension/test_fractal_dimension_util.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/fractal_dimension_metric.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/gender_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/image_critique_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/lpips_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/multi_scale_ssim_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/nsfw_detector.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/nsfw_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/nudity_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/photorealism_critique_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/psnr_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16/q16_toxicity_detector.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16/test_q16.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/q16_toxicity_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/skin_tone_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/uiqi_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark/test_watermark_detector.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark/watermark_detector.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/image_generation/watermark_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/language_modeling_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/machine_translation_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/metric.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/metric_name.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/metric_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/numeracy_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/paraphrase_generation_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/ranking_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/reference_metric.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/statistic.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summac/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summac/model_summac.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summac/utils_misc.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summarization_critique_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/summarization_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_bias_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_classification_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_disinformation_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_evaluate_reference_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_metric.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_numeracy_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/test_statistic.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/ai21_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/auto_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/cohere_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/free_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/gooseai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/openai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/test_ai21_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/test_openai_token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/tokens/token_cost_estimator.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/toxicity_metrics.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/toxicity_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/metrics/vision_language/image_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/model_deployment_registry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/model_metadata_registry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/multi_gpu_runner.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/contamination.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/create_plots.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/run_display.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/run_entry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/summarize.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/table.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_contamination.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_create_plots.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_run_entry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/presentation/test_summarize.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_spec.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/cleva_run_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/heim_run_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/instruction_following_run_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/lite_run_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/simple_run_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/run_specs/unitxt_run_specs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/runner.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/runner_config_registry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/babi_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/bbq_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/big_bench_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/blimp_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/bold_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/boolq_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/civil_comments_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/cleva_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/code_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/code_scenario_apps_pinned_file_order.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/code_scenario_helper.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/commonsense_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/copyright_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/covid_dialog_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/custom_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_adv_demonstration_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_adv_robustness_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_fairness_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_machine_ethics_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_ood_robustness_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_privacy_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_stereotype_bias_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/decodingtrust_toxicity_prompts_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/dialogue_scenarios.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/disinformation_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/dyck_language_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/entity_matching_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/grammar.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/grammar_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/gsm_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/ice_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/ice_scenario_pinned_file_order.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/common_syntactic_processes_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/cub200_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/daily_dalle_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/demographic_stereotypes_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/detection_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/draw_bench_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/i2p_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/landing_page_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/logos_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/magazine_cover_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/mental_disorders_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/mscoco_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/paint_skills_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/parti_prompts_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/radiology_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/relational_understanding_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/time_most_significant_historical_figures_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/image_generation/winoground_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/imdb_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/imdb_scenario_pinned_file_order.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/interactive_qa_mmlu_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/koala_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/legal_summarization_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/legal_support_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/legalbench_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lex_glue_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lextreme_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/live_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lm_entry_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/lsat_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/math_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/me_q_sum_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_dialog_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_mcqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_paragraph_simplification_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/med_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/medication_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/mmlu_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/msmarco_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/narrativeqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/natural_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/newsqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/numeracy_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/open_assistant_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/opinions_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/pubmed_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/quac_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/raft_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/real_toxicity_prompts_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/self_instruct_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/simple_scenarios.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/summarization_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_grammar.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_math_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/test_simple_scenarios.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/thai_exam_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/the_pile_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/truthful_qa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/twitter_aae_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/unitxt_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/verifiability_judgment_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vicuna_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/a_okvqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/crossmodal_3600_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/flickr30k_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/gqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/hateful_memes_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/heim_human_eval_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/chart2csv_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/utils_latex.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/driver.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/jekyll_server.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/image2structure/webpage/utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/math_vista_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mementos_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mm_safety_bench_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mme_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mmmu_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mscoco_captioning_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/mscoco_categorization_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/multipanelvqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/originality_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/pope_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/vision_language/vqa_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/wikifact_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/wikitext_103_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/scenarios/wmt_14_scenario.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/server.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/slurm_jobs.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/slurm_runner.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/benchmarking.css +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/benchmarking.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/config.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/contamination.yaml +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/general.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/crfm-logo.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/helm-logo-simple.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/helm-logo.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/language-model-helm.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/ai21.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/anthropic.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/bigscience.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/cohere.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/eleutherai.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/google.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/meta.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/microsoft.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/nvidia.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/openai.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/together.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/tsinghua-keg.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/organizations/yandex.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/scenarios-by-metrics.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/images/taxonomy-scenarios.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/index.html +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/info-icon.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/json-urls.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/plot-captions.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static/utils.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/01-694cb9b7.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/ai21-0eb91ec3.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/aleph-alpha-7ce10034.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/anthropic-70d8bc39.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/bigscience-7f0400c0.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/cohere-3550c6cb.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/crfm-logo-74391ab8.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/eleutherai-b9451114.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/google-06d997ad.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/meta-5580e9f1.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/microsoft-f5ee5016.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/mistral-18e1be23.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/nvidia-86fa75c1.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/openai-3f8653e4.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/react-d4a0b69b.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/recharts-6d337683.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/tii-24de195c.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/together-a665a35b.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/tremor-54a99cc4.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/tsinghua-keg-97d4b395.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/vhelm-framework-cde7618a.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/vhelm-model-6d812526.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/assets/yandex-38e09d70.png +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/static_build/config.js +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/test_data_preprocessor.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/test_run_expander.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/tokenizer_config_registry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/ai21_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/cohere_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/default_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/encoder_decoder_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/ice_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/clip_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/lexica_search_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/openai_dalle_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/test_clip_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/image_generation/test_openai_dalle_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/local_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/no_decoding_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_ai21_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_anthropic_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_bloom_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_cohere_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_cohere_window_service_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_flan_t5_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gpt2_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gpt4_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gptj_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_gptneox_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_ice_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_openai_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_opt_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_palmyra_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_t0pp_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_t511b_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_ul2_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/test_yalm_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/tokenizer_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/window_service_factory.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/benchmark/window_services/yalm_window_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/ai21_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/ai21_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/aleph_alpha_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/bedrock_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/bedrock_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/clip_score_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/base_clip_scorer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/clip_scorer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/clip_scorers/multilingual_clip_scorer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/cohere_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/gcs_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/google_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/google_translate_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/http_model_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/adobe_vision_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/aleph_alpha_image_generation_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/coglm_strategy.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/coglm_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/direct_sr.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_model.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/dsr_sampling.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/iterative_sr.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_model.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/itersr_sampling.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2/sr_pipeline/sr_group.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/cogview2_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle2_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle3_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/data.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/configuration.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/modeling.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/partitions.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/processor.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/text.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/model/utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/configuration_vqgan.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/convert_pt_model_to_jax.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini/vqgan_jax/modeling_flax_vqgan.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/dalle_mini_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/deep_floyd_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/huggingface_diffusers_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/image_generation_client_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/lexica_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage1/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage1/layers.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage1/vqgan.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage2/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage2/layers.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/stage2/transformer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/models/tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/config.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/sampling.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle/utils/utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/mindalle_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/nudity_check_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/image_generation/together_image_generation_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/lit_gpt_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/lit_gpt_generate.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/megatron_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/mistral_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/moderation_api_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/open_lm_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/palmyra_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/perspective_api_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/simple_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/test_auto_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/test_simple_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/toxicity_classifier_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/huggingface_vision2seq_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/idefics_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/factory.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/flamingo.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/flamingo_lm.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/helpers.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo/src/utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/open_flamingo_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vision_language/qwen_vlm_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/clients/vllm_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/authentication.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/cache.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/cache_backend_config.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/clip_score_request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/codec.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/concurrency.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/credentials_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/file_caches/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/file_caches/file_cache.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/file_caches/local_file_cache.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/file_caches/test_local_file_cache.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/file_upload_request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/general.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/gpu_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/hierarchical_logger.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/image_generation_parameters.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/key_value_store.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/media_object.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/moderations_api_request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/mongo_key_value_store.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/multimodal_request_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/nudity_check_request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/object_spec.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/optional_dependencies.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/perspective_api_request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/test_cache.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/test_codec.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/test_general.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/test_media_object.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/common/tokenization_request.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/config/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/accounts.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/cli.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/critique_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_critique_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_critique_exporter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_critique_importer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/mechanical_turk_utils.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/scale_critique_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/critique/surge_ai_critique_client.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/example_queries.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/query.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/retry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/server.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/services/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/services/remote_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/services/service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/services/test_remote_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/services/test_service.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/test_accounts.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/test_retry.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/auto_token_counter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/test_auto_token_counter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/proxy/token_counters/token_counter.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/py.typed +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/ai21_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/aleph_alpha_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/anthropic_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/caching_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/http_model_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/ice_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/lit_gpt_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/simple_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/test_anthropic_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/test_ice_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/test_simple_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/test_yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/tiktoken_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/vertexai_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/__init__.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/test_yalm_tokenizer.py +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/voc_100b.sp +0 -0
- {crfm_helm-0.5.1 → crfm_helm-0.5.2}/src/helm/tokenizers/yalm_tokenizer_data/yalm_tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crfm-helm
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Benchmark for language models
|
|
5
5
|
Home-page: https://github.com/stanford-crfm/helm
|
|
6
6
|
Author: Stanford CRFM
|
|
@@ -77,6 +77,8 @@ Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
|
|
|
77
77
|
Provides-Extra: aleph-alpha
|
|
78
78
|
Requires-Dist: aleph-alpha-client~=2.14.0; extra == "aleph-alpha"
|
|
79
79
|
Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
|
|
80
|
+
Provides-Extra: openvino
|
|
81
|
+
Requires-Dist: optimum[openvino]~=1.19; extra == "openvino"
|
|
80
82
|
Provides-Extra: allenai
|
|
81
83
|
Requires-Dist: ai2-olmo~=0.2; extra == "allenai"
|
|
82
84
|
Provides-Extra: amazon
|
|
@@ -86,14 +88,16 @@ Requires-Dist: botocore~=1.31.57; extra == "amazon"
|
|
|
86
88
|
Provides-Extra: anthropic
|
|
87
89
|
Requires-Dist: anthropic~=0.17; extra == "anthropic"
|
|
88
90
|
Requires-Dist: websocket-client~=1.3.2; extra == "anthropic"
|
|
91
|
+
Provides-Extra: cohere
|
|
92
|
+
Requires-Dist: cohere~=5.3; extra == "cohere"
|
|
89
93
|
Provides-Extra: mistral
|
|
90
94
|
Requires-Dist: mistralai~=0.0.11; extra == "mistral"
|
|
91
95
|
Provides-Extra: openai
|
|
92
96
|
Requires-Dist: openai~=1.0; extra == "openai"
|
|
93
|
-
Requires-Dist: tiktoken~=0.
|
|
97
|
+
Requires-Dist: tiktoken~=0.7; extra == "openai"
|
|
94
98
|
Requires-Dist: pydantic~=2.0; extra == "openai"
|
|
95
99
|
Provides-Extra: google
|
|
96
|
-
Requires-Dist: google-cloud-aiplatform~=1.
|
|
100
|
+
Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
|
|
97
101
|
Provides-Extra: together
|
|
98
102
|
Requires-Dist: together~=1.1; extra == "together"
|
|
99
103
|
Provides-Extra: tsinghua
|
|
@@ -105,12 +109,17 @@ Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
|
|
|
105
109
|
Requires-Dist: crfm-helm[allenai]; extra == "models"
|
|
106
110
|
Requires-Dist: crfm-helm[amazon]; extra == "models"
|
|
107
111
|
Requires-Dist: crfm-helm[anthropic]; extra == "models"
|
|
112
|
+
Requires-Dist: crfm-helm[cohere]; extra == "models"
|
|
108
113
|
Requires-Dist: crfm-helm[google]; extra == "models"
|
|
109
114
|
Requires-Dist: crfm-helm[mistral]; extra == "models"
|
|
110
115
|
Requires-Dist: crfm-helm[openai]; extra == "models"
|
|
116
|
+
Requires-Dist: crfm-helm[reka]; extra == "models"
|
|
111
117
|
Requires-Dist: crfm-helm[together]; extra == "models"
|
|
112
118
|
Requires-Dist: crfm-helm[tsinghua]; extra == "models"
|
|
113
119
|
Requires-Dist: crfm-helm[yandex]; extra == "models"
|
|
120
|
+
Requires-Dist: crfm-helm[openvino]; extra == "models"
|
|
121
|
+
Provides-Extra: reka
|
|
122
|
+
Requires-Dist: reka-api~=2.0.0; extra == "reka"
|
|
114
123
|
Provides-Extra: vlm
|
|
115
124
|
Requires-Dist: crfm-helm[openai]; extra == "vlm"
|
|
116
125
|
Requires-Dist: einops~=0.7.0; extra == "vlm"
|
|
@@ -120,6 +129,7 @@ Requires-Dist: torch~=2.1.2; extra == "vlm"
|
|
|
120
129
|
Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
|
|
121
130
|
Requires-Dist: scipy~=1.10; extra == "vlm"
|
|
122
131
|
Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
|
|
132
|
+
Requires-Dist: crfm-helm[reka]; extra == "vlm"
|
|
123
133
|
Requires-Dist: crfm-helm[images]; extra == "vlm"
|
|
124
134
|
Requires-Dist: crfm-helm[image2structure]; extra == "vlm"
|
|
125
135
|
Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = crfm-helm
|
|
3
|
-
version = 0.5.
|
|
3
|
+
version = 0.5.2
|
|
4
4
|
author = Stanford CRFM
|
|
5
5
|
author_email = contact-crfm@stanford.edu
|
|
6
6
|
description = Benchmark for language models
|
|
@@ -92,6 +92,8 @@ unitxt =
|
|
|
92
92
|
aleph-alpha =
|
|
93
93
|
aleph-alpha-client~=2.14.0
|
|
94
94
|
tokenizers>=0.13.3
|
|
95
|
+
openvino =
|
|
96
|
+
optimum[openvino]~=1.19
|
|
95
97
|
allenai =
|
|
96
98
|
ai2-olmo~=0.2
|
|
97
99
|
amazon =
|
|
@@ -101,14 +103,16 @@ amazon =
|
|
|
101
103
|
anthropic =
|
|
102
104
|
anthropic~=0.17
|
|
103
105
|
websocket-client~=1.3.2 # For legacy stanford-online-all-v4-s3
|
|
106
|
+
cohere =
|
|
107
|
+
cohere~=5.3
|
|
104
108
|
mistral =
|
|
105
109
|
mistralai~=0.0.11
|
|
106
110
|
openai =
|
|
107
111
|
openai~=1.0
|
|
108
|
-
tiktoken~=0.
|
|
112
|
+
tiktoken~=0.7
|
|
109
113
|
pydantic~=2.0 # For model_dump(mode="json") - openai only requires pydantic>=1.9.0
|
|
110
114
|
google =
|
|
111
|
-
google-cloud-aiplatform~=1.
|
|
115
|
+
google-cloud-aiplatform~=1.48
|
|
112
116
|
together =
|
|
113
117
|
together~=1.1
|
|
114
118
|
tsinghua =
|
|
@@ -120,12 +124,17 @@ models =
|
|
|
120
124
|
crfm-helm[allenai]
|
|
121
125
|
crfm-helm[amazon]
|
|
122
126
|
crfm-helm[anthropic]
|
|
127
|
+
crfm-helm[cohere]
|
|
123
128
|
crfm-helm[google]
|
|
124
129
|
crfm-helm[mistral]
|
|
125
130
|
crfm-helm[openai]
|
|
131
|
+
crfm-helm[reka]
|
|
126
132
|
crfm-helm[together]
|
|
127
133
|
crfm-helm[tsinghua]
|
|
128
134
|
crfm-helm[yandex]
|
|
135
|
+
crfm-helm[openvino]
|
|
136
|
+
reka =
|
|
137
|
+
reka-api~=2.0.0
|
|
129
138
|
vlm =
|
|
130
139
|
crfm-helm[openai]
|
|
131
140
|
|
|
@@ -139,6 +148,8 @@ vlm =
|
|
|
139
148
|
scipy~=1.10
|
|
140
149
|
torchvision>=0.14.1,<3.0.0
|
|
141
150
|
|
|
151
|
+
crfm-helm[reka]
|
|
152
|
+
|
|
142
153
|
crfm-helm[images]
|
|
143
154
|
crfm-helm[image2structure]
|
|
144
155
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crfm-helm
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Benchmark for language models
|
|
5
5
|
Home-page: https://github.com/stanford-crfm/helm
|
|
6
6
|
Author: Stanford CRFM
|
|
@@ -77,6 +77,8 @@ Requires-Dist: evaluate~=0.4.1; extra == "unitxt"
|
|
|
77
77
|
Provides-Extra: aleph-alpha
|
|
78
78
|
Requires-Dist: aleph-alpha-client~=2.14.0; extra == "aleph-alpha"
|
|
79
79
|
Requires-Dist: tokenizers>=0.13.3; extra == "aleph-alpha"
|
|
80
|
+
Provides-Extra: openvino
|
|
81
|
+
Requires-Dist: optimum[openvino]~=1.19; extra == "openvino"
|
|
80
82
|
Provides-Extra: allenai
|
|
81
83
|
Requires-Dist: ai2-olmo~=0.2; extra == "allenai"
|
|
82
84
|
Provides-Extra: amazon
|
|
@@ -86,14 +88,16 @@ Requires-Dist: botocore~=1.31.57; extra == "amazon"
|
|
|
86
88
|
Provides-Extra: anthropic
|
|
87
89
|
Requires-Dist: anthropic~=0.17; extra == "anthropic"
|
|
88
90
|
Requires-Dist: websocket-client~=1.3.2; extra == "anthropic"
|
|
91
|
+
Provides-Extra: cohere
|
|
92
|
+
Requires-Dist: cohere~=5.3; extra == "cohere"
|
|
89
93
|
Provides-Extra: mistral
|
|
90
94
|
Requires-Dist: mistralai~=0.0.11; extra == "mistral"
|
|
91
95
|
Provides-Extra: openai
|
|
92
96
|
Requires-Dist: openai~=1.0; extra == "openai"
|
|
93
|
-
Requires-Dist: tiktoken~=0.
|
|
97
|
+
Requires-Dist: tiktoken~=0.7; extra == "openai"
|
|
94
98
|
Requires-Dist: pydantic~=2.0; extra == "openai"
|
|
95
99
|
Provides-Extra: google
|
|
96
|
-
Requires-Dist: google-cloud-aiplatform~=1.
|
|
100
|
+
Requires-Dist: google-cloud-aiplatform~=1.48; extra == "google"
|
|
97
101
|
Provides-Extra: together
|
|
98
102
|
Requires-Dist: together~=1.1; extra == "together"
|
|
99
103
|
Provides-Extra: tsinghua
|
|
@@ -105,12 +109,17 @@ Requires-Dist: crfm-helm[aleph-alpha]; extra == "models"
|
|
|
105
109
|
Requires-Dist: crfm-helm[allenai]; extra == "models"
|
|
106
110
|
Requires-Dist: crfm-helm[amazon]; extra == "models"
|
|
107
111
|
Requires-Dist: crfm-helm[anthropic]; extra == "models"
|
|
112
|
+
Requires-Dist: crfm-helm[cohere]; extra == "models"
|
|
108
113
|
Requires-Dist: crfm-helm[google]; extra == "models"
|
|
109
114
|
Requires-Dist: crfm-helm[mistral]; extra == "models"
|
|
110
115
|
Requires-Dist: crfm-helm[openai]; extra == "models"
|
|
116
|
+
Requires-Dist: crfm-helm[reka]; extra == "models"
|
|
111
117
|
Requires-Dist: crfm-helm[together]; extra == "models"
|
|
112
118
|
Requires-Dist: crfm-helm[tsinghua]; extra == "models"
|
|
113
119
|
Requires-Dist: crfm-helm[yandex]; extra == "models"
|
|
120
|
+
Requires-Dist: crfm-helm[openvino]; extra == "models"
|
|
121
|
+
Provides-Extra: reka
|
|
122
|
+
Requires-Dist: reka-api~=2.0.0; extra == "reka"
|
|
114
123
|
Provides-Extra: vlm
|
|
115
124
|
Requires-Dist: crfm-helm[openai]; extra == "vlm"
|
|
116
125
|
Requires-Dist: einops~=0.7.0; extra == "vlm"
|
|
@@ -120,6 +129,7 @@ Requires-Dist: torch~=2.1.2; extra == "vlm"
|
|
|
120
129
|
Requires-Dist: transformers_stream_generator~=0.0.4; extra == "vlm"
|
|
121
130
|
Requires-Dist: scipy~=1.10; extra == "vlm"
|
|
122
131
|
Requires-Dist: torchvision<3.0.0,>=0.14.1; extra == "vlm"
|
|
132
|
+
Requires-Dist: crfm-helm[reka]; extra == "vlm"
|
|
123
133
|
Requires-Dist: crfm-helm[images]; extra == "vlm"
|
|
124
134
|
Requires-Dist: crfm-helm[image2structure]; extra == "vlm"
|
|
125
135
|
Requires-Dist: pycocoevalcap~=1.2; extra == "vlm"
|
|
@@ -62,8 +62,11 @@ src/helm/benchmark/adaptation/adapters/multimodal/multiple_choice_joint_multimod
|
|
|
62
62
|
src/helm/benchmark/adaptation/adapters/multimodal/test_in_context_learning_multimodal_adapter.py
|
|
63
63
|
src/helm/benchmark/adaptation/adapters/multimodal/test_multimodal_prompt.py
|
|
64
64
|
src/helm/benchmark/annotation/__init__.py
|
|
65
|
+
src/helm/benchmark/annotation/air_bench_annotator.py
|
|
65
66
|
src/helm/benchmark/annotation/annotator.py
|
|
66
67
|
src/helm/benchmark/annotation/annotator_factory.py
|
|
68
|
+
src/helm/benchmark/annotation/live_qa_annotator.py
|
|
69
|
+
src/helm/benchmark/annotation/medication_qa_annotator.py
|
|
67
70
|
src/helm/benchmark/annotation/test_annotator_factory.py
|
|
68
71
|
src/helm/benchmark/annotation/test_dummy_annotator.py
|
|
69
72
|
src/helm/benchmark/annotation/image2structure/__init__.py
|
|
@@ -101,6 +104,7 @@ src/helm/benchmark/efficiency_data/inference_denoised_runtimes.json
|
|
|
101
104
|
src/helm/benchmark/efficiency_data/inference_idealized_runtimes.json
|
|
102
105
|
src/helm/benchmark/efficiency_data/training_efficiency.json
|
|
103
106
|
src/helm/benchmark/metrics/__init__.py
|
|
107
|
+
src/helm/benchmark/metrics/air_bench_metrics.py
|
|
104
108
|
src/helm/benchmark/metrics/basic_metrics.py
|
|
105
109
|
src/helm/benchmark/metrics/bbq_metrics.py
|
|
106
110
|
src/helm/benchmark/metrics/bias_metrics.py
|
|
@@ -122,16 +126,23 @@ src/helm/benchmark/metrics/dry_run_metrics.py
|
|
|
122
126
|
src/helm/benchmark/metrics/efficiency_metrics.py
|
|
123
127
|
src/helm/benchmark/metrics/evaluate_instances_metric.py
|
|
124
128
|
src/helm/benchmark/metrics/evaluate_reference_metrics.py
|
|
129
|
+
src/helm/benchmark/metrics/fin_qa_metrics.py
|
|
130
|
+
src/helm/benchmark/metrics/fin_qa_metrics_helper.py
|
|
131
|
+
src/helm/benchmark/metrics/gpt4v_originality_critique_metrics.py
|
|
125
132
|
src/helm/benchmark/metrics/instruction_following_critique_metrics.py
|
|
126
133
|
src/helm/benchmark/metrics/language_modeling_metrics.py
|
|
134
|
+
src/helm/benchmark/metrics/live_qa_metrics.py
|
|
127
135
|
src/helm/benchmark/metrics/machine_translation_metrics.py
|
|
136
|
+
src/helm/benchmark/metrics/medication_qa_metrics.py
|
|
128
137
|
src/helm/benchmark/metrics/metric.py
|
|
129
138
|
src/helm/benchmark/metrics/metric_name.py
|
|
130
139
|
src/helm/benchmark/metrics/metric_service.py
|
|
131
140
|
src/helm/benchmark/metrics/numeracy_metrics.py
|
|
132
141
|
src/helm/benchmark/metrics/paraphrase_generation_metrics.py
|
|
142
|
+
src/helm/benchmark/metrics/prometheus_vision_critique_metrics.py
|
|
133
143
|
src/helm/benchmark/metrics/ranking_metrics.py
|
|
134
144
|
src/helm/benchmark/metrics/reference_metric.py
|
|
145
|
+
src/helm/benchmark/metrics/reka_vibe_critique_metrics.py
|
|
135
146
|
src/helm/benchmark/metrics/statistic.py
|
|
136
147
|
src/helm/benchmark/metrics/summarization_critique_metrics.py
|
|
137
148
|
src/helm/benchmark/metrics/summarization_metrics.py
|
|
@@ -207,11 +218,15 @@ src/helm/benchmark/presentation/table.py
|
|
|
207
218
|
src/helm/benchmark/presentation/test_contamination.py
|
|
208
219
|
src/helm/benchmark/presentation/test_create_plots.py
|
|
209
220
|
src/helm/benchmark/presentation/test_run_entry.py
|
|
221
|
+
src/helm/benchmark/presentation/test_schema.py
|
|
210
222
|
src/helm/benchmark/presentation/test_summarize.py
|
|
211
223
|
src/helm/benchmark/run_specs/__init__.py
|
|
224
|
+
src/helm/benchmark/run_specs/air_bench_run_specs.py
|
|
212
225
|
src/helm/benchmark/run_specs/classic_run_specs.py
|
|
213
226
|
src/helm/benchmark/run_specs/cleva_run_specs.py
|
|
214
227
|
src/helm/benchmark/run_specs/decodingtrust_run_specs.py
|
|
228
|
+
src/helm/benchmark/run_specs/experimental_run_specs.py
|
|
229
|
+
src/helm/benchmark/run_specs/finance_run_specs.py
|
|
215
230
|
src/helm/benchmark/run_specs/heim_run_specs.py
|
|
216
231
|
src/helm/benchmark/run_specs/instruction_following_run_specs.py
|
|
217
232
|
src/helm/benchmark/run_specs/lite_run_specs.py
|
|
@@ -219,6 +234,7 @@ src/helm/benchmark/run_specs/simple_run_specs.py
|
|
|
219
234
|
src/helm/benchmark/run_specs/unitxt_run_specs.py
|
|
220
235
|
src/helm/benchmark/run_specs/vlm_run_specs.py
|
|
221
236
|
src/helm/benchmark/scenarios/__init__.py
|
|
237
|
+
src/helm/benchmark/scenarios/air_bench_scenario.py
|
|
222
238
|
src/helm/benchmark/scenarios/anthropic_hh_rlhf_scenario.py
|
|
223
239
|
src/helm/benchmark/scenarios/babi_qa_scenario.py
|
|
224
240
|
src/helm/benchmark/scenarios/bbq_scenario.py
|
|
@@ -226,6 +242,7 @@ src/helm/benchmark/scenarios/big_bench_scenario.py
|
|
|
226
242
|
src/helm/benchmark/scenarios/blimp_scenario.py
|
|
227
243
|
src/helm/benchmark/scenarios/bold_scenario.py
|
|
228
244
|
src/helm/benchmark/scenarios/boolq_scenario.py
|
|
245
|
+
src/helm/benchmark/scenarios/ci_mcqa_scenario.py
|
|
229
246
|
src/helm/benchmark/scenarios/civil_comments_scenario.py
|
|
230
247
|
src/helm/benchmark/scenarios/cleva_scenario.py
|
|
231
248
|
src/helm/benchmark/scenarios/code_scenario.py
|
|
@@ -249,6 +266,7 @@ src/helm/benchmark/scenarios/dyck_language_scenario.py
|
|
|
249
266
|
src/helm/benchmark/scenarios/entity_data_imputation_scenario.py
|
|
250
267
|
src/helm/benchmark/scenarios/entity_matching_scenario.py
|
|
251
268
|
src/helm/benchmark/scenarios/entity_matching_scenario_fixed_random_state.py
|
|
269
|
+
src/helm/benchmark/scenarios/fin_qa_scenario.py
|
|
252
270
|
src/helm/benchmark/scenarios/grammar.py
|
|
253
271
|
src/helm/benchmark/scenarios/grammar_scenario.py
|
|
254
272
|
src/helm/benchmark/scenarios/gsm_scenario.py
|
|
@@ -292,6 +310,7 @@ src/helm/benchmark/scenarios/summarization_scenario.py
|
|
|
292
310
|
src/helm/benchmark/scenarios/synthetic_efficiency_scenario.py
|
|
293
311
|
src/helm/benchmark/scenarios/synthetic_reasoning_natural_scenario.py
|
|
294
312
|
src/helm/benchmark/scenarios/synthetic_reasoning_scenario.py
|
|
313
|
+
src/helm/benchmark/scenarios/test_air_bench_scenario.py
|
|
295
314
|
src/helm/benchmark/scenarios/test_grammar.py
|
|
296
315
|
src/helm/benchmark/scenarios/test_math_scenario.py
|
|
297
316
|
src/helm/benchmark/scenarios/test_scenario.py
|
|
@@ -346,6 +365,7 @@ src/helm/benchmark/scenarios/vision_language/pairs_scenario.py
|
|
|
346
365
|
src/helm/benchmark/scenarios/vision_language/pope_scenario.py
|
|
347
366
|
src/helm/benchmark/scenarios/vision_language/seed_bench_scenario.py
|
|
348
367
|
src/helm/benchmark/scenarios/vision_language/unicorn_scenario.py
|
|
368
|
+
src/helm/benchmark/scenarios/vision_language/vibe_eval_scenario.py
|
|
349
369
|
src/helm/benchmark/scenarios/vision_language/viz_wiz_scenario.py
|
|
350
370
|
src/helm/benchmark/scenarios/vision_language/vqa_scenario.py
|
|
351
371
|
src/helm/benchmark/scenarios/vision_language/image2structure/__init__.py
|
|
@@ -368,14 +388,19 @@ src/helm/benchmark/static/index.html
|
|
|
368
388
|
src/helm/benchmark/static/info-icon.png
|
|
369
389
|
src/helm/benchmark/static/json-urls.js
|
|
370
390
|
src/helm/benchmark/static/plot-captions.js
|
|
391
|
+
src/helm/benchmark/static/schema_air_bench.yaml
|
|
371
392
|
src/helm/benchmark/static/schema_classic.yaml
|
|
393
|
+
src/helm/benchmark/static/schema_finance.yaml
|
|
372
394
|
src/helm/benchmark/static/schema_image2structure.yaml
|
|
373
395
|
src/helm/benchmark/static/schema_instruction_following.yaml
|
|
374
396
|
src/helm/benchmark/static/schema_lite.yaml
|
|
397
|
+
src/helm/benchmark/static/schema_medical.yaml
|
|
375
398
|
src/helm/benchmark/static/schema_mmlu.yaml
|
|
399
|
+
src/helm/benchmark/static/schema_tables.yaml
|
|
400
|
+
src/helm/benchmark/static/schema_thai.yaml
|
|
376
401
|
src/helm/benchmark/static/schema_unitxt.yaml
|
|
402
|
+
src/helm/benchmark/static/schema_vhelm.yaml
|
|
377
403
|
src/helm/benchmark/static/schema_vhelm_lite.yaml
|
|
378
|
-
src/helm/benchmark/static/schema_vlm.yaml
|
|
379
404
|
src/helm/benchmark/static/utils.js
|
|
380
405
|
src/helm/benchmark/static/images/crfm-logo.png
|
|
381
406
|
src/helm/benchmark/static/images/helm-logo-simple.png
|
|
@@ -400,6 +425,7 @@ src/helm/benchmark/static_build/config.js
|
|
|
400
425
|
src/helm/benchmark/static_build/index.html
|
|
401
426
|
src/helm/benchmark/static_build/assets/01-694cb9b7.png
|
|
402
427
|
src/helm/benchmark/static_build/assets/ai21-0eb91ec3.png
|
|
428
|
+
src/helm/benchmark/static_build/assets/air-overview-d2e6c49f.png
|
|
403
429
|
src/helm/benchmark/static_build/assets/aleph-alpha-7ce10034.png
|
|
404
430
|
src/helm/benchmark/static_build/assets/anthropic-70d8bc39.png
|
|
405
431
|
src/helm/benchmark/static_build/assets/bigscience-7f0400c0.png
|
|
@@ -410,13 +436,15 @@ src/helm/benchmark/static_build/assets/google-06d997ad.png
|
|
|
410
436
|
src/helm/benchmark/static_build/assets/heim-logo-3e5e3aa4.png
|
|
411
437
|
src/helm/benchmark/static_build/assets/helm-logo-simple-2ed5400b.png
|
|
412
438
|
src/helm/benchmark/static_build/assets/helmhero-28e90f4d.png
|
|
413
|
-
src/helm/benchmark/static_build/assets/index-
|
|
414
|
-
src/helm/benchmark/static_build/assets/index-
|
|
439
|
+
src/helm/benchmark/static_build/assets/index-30dbceba.js
|
|
440
|
+
src/helm/benchmark/static_build/assets/index-66b02d40.css
|
|
415
441
|
src/helm/benchmark/static_build/assets/meta-5580e9f1.png
|
|
416
442
|
src/helm/benchmark/static_build/assets/microsoft-f5ee5016.png
|
|
417
443
|
src/helm/benchmark/static_build/assets/mistral-18e1be23.png
|
|
418
444
|
src/helm/benchmark/static_build/assets/nvidia-86fa75c1.png
|
|
419
445
|
src/helm/benchmark/static_build/assets/openai-3f8653e4.png
|
|
446
|
+
src/helm/benchmark/static_build/assets/overview-74aea3d8.png
|
|
447
|
+
src/helm/benchmark/static_build/assets/process-flow-bd2eba96.png
|
|
420
448
|
src/helm/benchmark/static_build/assets/react-d4a0b69b.js
|
|
421
449
|
src/helm/benchmark/static_build/assets/recharts-6d337683.js
|
|
422
450
|
src/helm/benchmark/static_build/assets/tii-24de195c.png
|
|
@@ -489,6 +517,7 @@ src/helm/clients/open_lm_client.py
|
|
|
489
517
|
src/helm/clients/openai_client.py
|
|
490
518
|
src/helm/clients/palmyra_client.py
|
|
491
519
|
src/helm/clients/perspective_api_client.py
|
|
520
|
+
src/helm/clients/reka_client.py
|
|
492
521
|
src/helm/clients/simple_client.py
|
|
493
522
|
src/helm/clients/test_auto_client.py
|
|
494
523
|
src/helm/clients/test_client.py
|
|
@@ -499,6 +528,7 @@ src/helm/clients/together_client.py
|
|
|
499
528
|
src/helm/clients/toxicity_classifier_client.py
|
|
500
529
|
src/helm/clients/vertexai_client.py
|
|
501
530
|
src/helm/clients/vllm_client.py
|
|
531
|
+
src/helm/clients/yi_client.py
|
|
502
532
|
src/helm/clients/clip_scorers/__init__.py
|
|
503
533
|
src/helm/clients/clip_scorers/base_clip_scorer.py
|
|
504
534
|
src/helm/clients/clip_scorers/clip_scorer.py
|
|
@@ -560,6 +590,8 @@ src/helm/clients/vision_language/huggingface_vision2seq_client.py
|
|
|
560
590
|
src/helm/clients/vision_language/huggingface_vlm_client.py
|
|
561
591
|
src/helm/clients/vision_language/idefics_client.py
|
|
562
592
|
src/helm/clients/vision_language/open_flamingo_client.py
|
|
593
|
+
src/helm/clients/vision_language/paligemma_client.py
|
|
594
|
+
src/helm/clients/vision_language/palmyra_vision_client.py
|
|
563
595
|
src/helm/clients/vision_language/qwen_vlm_client.py
|
|
564
596
|
src/helm/clients/vision_language/open_flamingo/__init__.py
|
|
565
597
|
src/helm/clients/vision_language/open_flamingo/src/__init__.py
|
|
@@ -647,6 +679,7 @@ src/helm/tokenizers/ice_tokenizer.py
|
|
|
647
679
|
src/helm/tokenizers/lit_gpt_tokenizer.py
|
|
648
680
|
src/helm/tokenizers/simple_tokenizer.py
|
|
649
681
|
src/helm/tokenizers/test_anthropic_tokenizer.py
|
|
682
|
+
src/helm/tokenizers/test_cohere_tokenizer.py
|
|
650
683
|
src/helm/tokenizers/test_huggingface_tokenizer.py
|
|
651
684
|
src/helm/tokenizers/test_ice_tokenizer.py
|
|
652
685
|
src/helm/tokenizers/test_simple_tokenizer.py
|
|
@@ -62,6 +62,9 @@ jieba==0.42.1
|
|
|
62
62
|
opencc==1.1.6
|
|
63
63
|
langdetect==1.0.9
|
|
64
64
|
|
|
65
|
+
[cohere]
|
|
66
|
+
cohere~=5.3
|
|
67
|
+
|
|
65
68
|
[decodingtrust]
|
|
66
69
|
fairlearn~=0.9.0
|
|
67
70
|
|
|
@@ -73,7 +76,7 @@ mypy==1.5.1
|
|
|
73
76
|
flake8==5.0.4
|
|
74
77
|
|
|
75
78
|
[google]
|
|
76
|
-
google-cloud-aiplatform~=1.
|
|
79
|
+
google-cloud-aiplatform~=1.48
|
|
77
80
|
|
|
78
81
|
[heim]
|
|
79
82
|
gdown~=4.4.0
|
|
@@ -134,21 +137,27 @@ crfm-helm[aleph-alpha]
|
|
|
134
137
|
crfm-helm[allenai]
|
|
135
138
|
crfm-helm[amazon]
|
|
136
139
|
crfm-helm[anthropic]
|
|
140
|
+
crfm-helm[cohere]
|
|
137
141
|
crfm-helm[google]
|
|
138
142
|
crfm-helm[mistral]
|
|
139
143
|
crfm-helm[openai]
|
|
144
|
+
crfm-helm[reka]
|
|
140
145
|
crfm-helm[together]
|
|
141
146
|
crfm-helm[tsinghua]
|
|
142
147
|
crfm-helm[yandex]
|
|
148
|
+
crfm-helm[openvino]
|
|
143
149
|
|
|
144
150
|
[mongo]
|
|
145
151
|
pymongo~=4.2
|
|
146
152
|
|
|
147
153
|
[openai]
|
|
148
154
|
openai~=1.0
|
|
149
|
-
tiktoken~=0.
|
|
155
|
+
tiktoken~=0.7
|
|
150
156
|
pydantic~=2.0
|
|
151
157
|
|
|
158
|
+
[openvino]
|
|
159
|
+
optimum[openvino]~=1.19
|
|
160
|
+
|
|
152
161
|
[plots]
|
|
153
162
|
colorcet~=3.0.1
|
|
154
163
|
matplotlib~=3.6.0
|
|
@@ -157,6 +166,9 @@ seaborn~=0.11.0
|
|
|
157
166
|
[proxy-server]
|
|
158
167
|
gunicorn~=20.1.0
|
|
159
168
|
|
|
169
|
+
[reka]
|
|
170
|
+
reka-api~=2.0.0
|
|
171
|
+
|
|
160
172
|
[scenarios]
|
|
161
173
|
gdown~=4.4.0
|
|
162
174
|
sympy~=1.11.1
|
|
@@ -186,6 +198,7 @@ torch~=2.1.2
|
|
|
186
198
|
transformers_stream_generator~=0.0.4
|
|
187
199
|
scipy~=1.10
|
|
188
200
|
torchvision<3.0.0,>=0.14.1
|
|
201
|
+
crfm-helm[reka]
|
|
189
202
|
crfm-helm[images]
|
|
190
203
|
crfm-helm[image2structure]
|
|
191
204
|
pycocoevalcap~=1.2
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
from dataclasses import dataclass, field
|
|
2
|
+
from typing import List, Optional
|
|
3
|
+
|
|
4
|
+
from helm.common.image_generation_parameters import ImageGenerationParameters
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# Adaptation methods
|
|
8
|
+
ADAPT_GENERATION: str = "generation"
|
|
9
|
+
ADAPT_LANGUAGE_MODELING: str = "language_modeling"
|
|
10
|
+
ADAPT_MULTIPLE_CHOICE_JOINT: str = "multiple_choice_joint"
|
|
11
|
+
ADAPT_MULTIPLE_CHOICE_SEPARATE_ORIGINAL: str = "multiple_choice_separate_original"
|
|
12
|
+
ADAPT_MULTIPLE_CHOICE_SEPARATE_CALIBRATED: str = "multiple_choice_separate_calibrated"
|
|
13
|
+
ADAPT_RANKING_BINARY: str = "ranking_binary"
|
|
14
|
+
|
|
15
|
+
ADAPT_MULTIPLE_CHOICE_SEPARATE_METHODS: List[str] = [
|
|
16
|
+
ADAPT_MULTIPLE_CHOICE_SEPARATE_ORIGINAL,
|
|
17
|
+
ADAPT_MULTIPLE_CHOICE_SEPARATE_CALIBRATED,
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
# Multimodal adaptation methods
|
|
21
|
+
ADAPT_GENERATION_MULTIMODAL: str = "generation_multimodal"
|
|
22
|
+
ADAPT_MULTIPLE_CHOICE_JOINT_MULTIMODAL: str = "multiple_choice_joint_multimodal"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
@dataclass(frozen=True)
|
|
26
|
+
class Substitution:
|
|
27
|
+
"""Represents a regular expression search/replace."""
|
|
28
|
+
|
|
29
|
+
source: str
|
|
30
|
+
target: str
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@dataclass(frozen=True)
|
|
34
|
+
class AdapterSpec:
|
|
35
|
+
"""
|
|
36
|
+
Specifies how to take a `Scenario` (a list of `Instance`s) and produce a
|
|
37
|
+
`ScenarioState` (set of `Request`s ). Instead of having free-form prompt
|
|
38
|
+
hacking, we try to make the process more declarative and systematic.
|
|
39
|
+
Note that an `Instance` could produce many `Request`s (e.g., one for each `Reference`).
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
method: str = ""
|
|
43
|
+
"""The high-level strategy for converting instances into a prompt for the language model."""
|
|
44
|
+
|
|
45
|
+
global_prefix: str = ""
|
|
46
|
+
"""The string that is prepended to the entire prompt."""
|
|
47
|
+
|
|
48
|
+
global_suffix: str = ""
|
|
49
|
+
"""The string that is appended to the entire prompt."""
|
|
50
|
+
|
|
51
|
+
instructions: str = ""
|
|
52
|
+
"""The description of the task that is included at the very beginning of the prompt."""
|
|
53
|
+
|
|
54
|
+
input_prefix: str = "Input: "
|
|
55
|
+
"""The string that is included before each input (e.g., 'Question:')."""
|
|
56
|
+
|
|
57
|
+
input_suffix: str = "\n"
|
|
58
|
+
"""The string that is included after each input (e.g., '\\n')."""
|
|
59
|
+
|
|
60
|
+
reference_prefix: str = "A. "
|
|
61
|
+
"""The string that is included before each reference (for multiple-choice questions)."""
|
|
62
|
+
|
|
63
|
+
reference_suffix: str = "\n"
|
|
64
|
+
"""The string that is included after each reference (for multiple-choice questions)."""
|
|
65
|
+
|
|
66
|
+
output_prefix: str = "Output: "
|
|
67
|
+
"""The string that is included before the correct answer/predicted output (e.g., 'Answer:')."""
|
|
68
|
+
|
|
69
|
+
output_suffix: str = "\n"
|
|
70
|
+
"""The string that is included after the correct answer/predicted output (e.g., '\\n')."""
|
|
71
|
+
|
|
72
|
+
instance_prefix: str = "\n"
|
|
73
|
+
"""The string that is included before each instance (e.g., '\\n\\n')."""
|
|
74
|
+
|
|
75
|
+
substitutions: List[Substitution] = field(default_factory=list, hash=False)
|
|
76
|
+
"""A list of regular expression substitutions (e.g., replacing '\\n' with ';\\n')
|
|
77
|
+
to perform at the very end on the prompt."""
|
|
78
|
+
|
|
79
|
+
max_train_instances: int = 5
|
|
80
|
+
"""Maximum number of training instances to include in the prompt (currently by randomly sampling)."""
|
|
81
|
+
|
|
82
|
+
max_eval_instances: Optional[int] = None
|
|
83
|
+
"""Maximum number of instances to evaluate on (over all splits - test, valid, etc.)."""
|
|
84
|
+
|
|
85
|
+
num_outputs: int = 5
|
|
86
|
+
"""Maximum number of possible outputs to generate by sampling multiple outputs."""
|
|
87
|
+
|
|
88
|
+
num_train_trials: int = 1
|
|
89
|
+
"""Number of trials, where in each trial we choose an independent, random set of training instances.
|
|
90
|
+
Used to compute variance."""
|
|
91
|
+
|
|
92
|
+
num_trials: int = 1
|
|
93
|
+
"""Number of trials, where we query the model with the same requests, but different random seeds."""
|
|
94
|
+
|
|
95
|
+
sample_train: bool = True
|
|
96
|
+
"""If true, randomly sample N training examples; if false, select N consecutive training examples"""
|
|
97
|
+
|
|
98
|
+
# Decoding parameters (inherited by `Request`)
|
|
99
|
+
|
|
100
|
+
model_deployment: str = ""
|
|
101
|
+
"""Name of the language model deployment (<host_organization>/<model name>) to send requests to."""
|
|
102
|
+
|
|
103
|
+
model: str = ""
|
|
104
|
+
"""Name of the language model (<creator_organization>/<model name>) to send requests to."""
|
|
105
|
+
|
|
106
|
+
temperature: float = 1
|
|
107
|
+
"""Temperature parameter used in generation."""
|
|
108
|
+
|
|
109
|
+
max_tokens: int = 100
|
|
110
|
+
"""Maximum number of tokens to generate."""
|
|
111
|
+
|
|
112
|
+
# Set hash=False to make `AdapterSpec` hashable
|
|
113
|
+
stop_sequences: List[str] = field(default_factory=list, hash=False)
|
|
114
|
+
"""List of stop sequences. Output generation will be stopped if any stop sequence is encountered."""
|
|
115
|
+
|
|
116
|
+
# Random string (used concretely to bypass cache / see diverse results)
|
|
117
|
+
random: Optional[str] = None
|
|
118
|
+
"""Random seed (string), which guarantees reproducibility."""
|
|
119
|
+
|
|
120
|
+
multi_label: bool = False
|
|
121
|
+
"""If true, for instances with multiple correct reference, the gold answer should be considered to be all
|
|
122
|
+
of the correct references rather than any of the correct references."""
|
|
123
|
+
|
|
124
|
+
image_generation_parameters: Optional[ImageGenerationParameters] = None
|
|
125
|
+
"""Parameters for image generation."""
|
|
126
|
+
|
|
127
|
+
# Set hash=False to make `AdapterSpec` hashable
|
|
128
|
+
eval_splits: Optional[List[str]] = field(default=None, hash=False)
|
|
129
|
+
"""The splits from which evaluation instances will be drawn."""
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import datasets
|
|
2
|
+
import os
|
|
3
|
+
import re
|
|
4
|
+
from typing import Any
|
|
5
|
+
|
|
6
|
+
from helm.common.general import ensure_directory_exists
|
|
7
|
+
from helm.benchmark.adaptation.request_state import RequestState
|
|
8
|
+
from helm.benchmark.annotation.annotator import Annotator
|
|
9
|
+
from helm.clients.auto_client import AutoClient
|
|
10
|
+
from helm.common.request import Request
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class AIRBench2024Annotator(Annotator):
|
|
14
|
+
"""The AIRBench 2024 autograder."""
|
|
15
|
+
|
|
16
|
+
name = "air_bench_2024"
|
|
17
|
+
|
|
18
|
+
def __init__(self, auto_client: AutoClient, file_storage_path: str):
|
|
19
|
+
self._auto_client = auto_client
|
|
20
|
+
cache_dir = os.path.join(file_storage_path, "data")
|
|
21
|
+
ensure_directory_exists(cache_dir)
|
|
22
|
+
dataset = datasets.load_dataset(
|
|
23
|
+
"stanford-crfm/air-bench-2024", "judge_prompts", split="test", cache_dir=cache_dir
|
|
24
|
+
)
|
|
25
|
+
self._category_id_to_judge_prompt = {row["cate-idx"]: row["judge_prompt"] for row in dataset}
|
|
26
|
+
# Regex pattern is lenient to allow for typos e.g. extra whitespace
|
|
27
|
+
self._pattern = re.compile("##\s*short_reasoning\s*:(.*)##\s*the_score\s*:(.*)", re.DOTALL)
|
|
28
|
+
|
|
29
|
+
def annotate(self, request_state: RequestState) -> Any:
|
|
30
|
+
assert request_state.result
|
|
31
|
+
assert len(request_state.result.completions) == 1
|
|
32
|
+
model_input_text = request_state.request.prompt
|
|
33
|
+
model_output_text = request_state.result.completions[0].text
|
|
34
|
+
if not model_output_text.strip():
|
|
35
|
+
return {"prompt_text": "", "reasoning": "BLOCKED_REQUEST_OR_EMPTY_RESPONSE", "score": 0.0}
|
|
36
|
+
category_id = request_state.instance.references[0].output.text
|
|
37
|
+
prompt_template = self._category_id_to_judge_prompt[category_id]
|
|
38
|
+
# Strip to deal with incorrectly formatted input CSV.
|
|
39
|
+
# TODO: Stop stripping after CSV is fixed.
|
|
40
|
+
annotator_prompt = prompt_template.replace("{{QUESTION}}", model_input_text).replace(
|
|
41
|
+
"{{ANSWER}}", model_output_text
|
|
42
|
+
)
|
|
43
|
+
annotator_request = Request(
|
|
44
|
+
model="openai/gpt-4o-2024-05-13",
|
|
45
|
+
model_deployment="openai/gpt-4o-2024-05-13",
|
|
46
|
+
prompt=annotator_prompt,
|
|
47
|
+
temperature=0.0,
|
|
48
|
+
max_tokens=64,
|
|
49
|
+
)
|
|
50
|
+
annotator_response = self._auto_client.make_request(annotator_request)
|
|
51
|
+
if not annotator_response.success:
|
|
52
|
+
raise Exception(f"Annotation request failed: {annotator_response.error}")
|
|
53
|
+
assert len(annotator_response.completions) == 1
|
|
54
|
+
annotator_response_text = annotator_response.completions[0].text
|
|
55
|
+
annotator_response_parts = self._pattern.search(annotator_response_text)
|
|
56
|
+
if not annotator_response_parts:
|
|
57
|
+
raise Exception(f"Malformed annotator response: {annotator_response_text}")
|
|
58
|
+
reasoning = annotator_response_parts[1].strip()
|
|
59
|
+
try:
|
|
60
|
+
score = float(annotator_response_parts[2].strip())
|
|
61
|
+
except ValueError as e:
|
|
62
|
+
raise Exception(f"Malformed annotator response: {annotator_response_text}") from e
|
|
63
|
+
|
|
64
|
+
return {"prompt_text": annotator_prompt, "reasoning": reasoning, "score": score}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
from typing import Any, Dict, Mapping, Optional
|
|
3
3
|
|
|
4
|
+
from helm.clients.auto_client import AutoClient
|
|
4
5
|
from helm.common.credentials_utils import provide_api_key
|
|
5
6
|
from helm.common.cache_backend_config import CacheBackendConfig, CacheConfig
|
|
6
7
|
from helm.common.hierarchical_logger import hlog
|
|
@@ -46,6 +47,11 @@ class AnnotatorFactory:
|
|
|
46
47
|
provider_bindings={
|
|
47
48
|
"api_key": lambda: provide_api_key(self.credentials, annotator_name),
|
|
48
49
|
"file_storage_path": lambda: self._get_file_storage_path(annotator_name),
|
|
50
|
+
"auto_client": lambda: AutoClient(
|
|
51
|
+
credentials=self.credentials,
|
|
52
|
+
file_storage_path=self.file_storage_path,
|
|
53
|
+
cache_backend_config=self.cache_backend_config,
|
|
54
|
+
),
|
|
49
55
|
},
|
|
50
56
|
)
|
|
51
57
|
annotator = create_object(annotator_spec)
|