fix: Load metrics from centralised folder #15
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In order to perform evaluations in offline mode, the HF evaluate metrics must be present.
Since metrics are loaded from the current working directory, this could cause conflicts whenever a dataset had the same name as the metric (e.g.
glue
dataset andglue
metric). LMEval would try to load the metric as the dataset.This issue is more prevalent with
unitxt
, where there is no way to modify the default loading path from LMEval.In order to avoid conflicts and still use unitxt in offline mode:
metrics
, avoiding conflicts)evaluate
load method is patched to use the localmetrics
(or provided folder)It is possible to provide a custom metrics folder by supplying the
LMEVAL_METRICS_PREFIX
environment variable. If not specified the bundledmetrics
folder is used.Description
How Has This Been Tested?
Exploratory testing using scenarios in https://github.com/trustyai-explainability/reference/blob/main/lm-eval/LM-EVAL-NEXT.md
Merge criteria: