hage2000-code-eval-stdio
Metric
hage2000/code_eval_stdiofrom the HuggingFaceevaluatelibrary.
When to invoke
User asks to compute hage2000/code_eval_stdio or wants HF evaluate's canonical version.
Recipe
import evaluate
metric = evaluate.load("hage2000/code_eval_stdio")
result = metric.compute(predictions=preds, references=refs)
print(result)
Don'ts
- Don't assume your in-house
hage2000/code_eval_stdiomatches HF — version conventions vary. - Many evaluate metrics have task-specific arguments (
average=,lang=,model_type=); read the metric card before reporting numbers.