kedudzic commited on
Commit
f4992e0
1 Parent(s): 338d02c

update compute

Browse files
Files changed (1) hide show
  1. charmatch.py +3 -3
charmatch.py CHANGED
@@ -71,9 +71,9 @@ class charmatch(evaluate.Metric):
71
  inputs_description="input expected output",
72
  # This defines the format of each prediction and reference
73
  features=datasets.Features({
74
- 'inputs': datasets.Value('string'),
75
- 'expected': datasets.Value('string'),
76
- 'outputs': datasets.Value('string')
77
  }),
78
  # Homepage of the module for documentation
79
  homepage="http://module.homepage",
 
71
  inputs_description="input expected output",
72
  # This defines the format of each prediction and reference
73
  features=datasets.Features({
74
+ 'inputs': datasets.Sequence(datasets.Value('string')),
75
+ 'expected': datasets.Sequence(datasets.Value('string')),
76
+ 'outputs': datasets.Sequence(datasets.Value('string'))
77
  }),
78
  # Homepage of the module for documentation
79
  homepage="http://module.homepage",