cdleong commited on
Commit
8ea460c
1 Parent(s): db2a44d

Update piglatin-mt.py

Browse files
Files changed (1) hide show
  1. piglatin-mt.py +1 -1
piglatin-mt.py CHANGED
@@ -118,6 +118,6 @@ class PigLatinMT(datasets.GeneratorBasedBuilder):
118
  with open(filepath, encoding="utf-8") as f:
119
  for id_, row in enumerate(f):
120
  data = json.loads(row)
121
- result = {"translation": {"eng": data["eng"], "yo": data["engyay"]}}
122
  yield id_, result
123
 
118
  with open(filepath, encoding="utf-8") as f:
119
  for id_, row in enumerate(f):
120
  data = json.loads(row)
121
+ result = {"translation": {"eng": data["eng"], "engyay": data["engyay"]}}
122
  yield id_, result
123