jjkim commited on
Commit
f435ec5
·
1 Parent(s): 11c1086
Files changed (1) hide show
  1. code_eval.py +2 -2
code_eval.py CHANGED
@@ -145,8 +145,8 @@ class CodeEval(evaluate.Metric):
145
  # This defines the format of each prediction and reference
146
  features=datasets.Features(
147
  {
148
- "predictions": datasets.Sequence(dict),
149
- "references": datasets.Sequence(dict),
150
  }
151
  ),
152
  homepage="https://github.com/openai/human-eval",
 
145
  # This defines the format of each prediction and reference
146
  features=datasets.Features(
147
  {
148
+ "predictions": list,
149
+ "references": list,
150
  }
151
  ),
152
  homepage="https://github.com/openai/human-eval",