system HF staff commited on
Commit
bad80a3
1 Parent(s): 8d116b7

Update files from the datasets library (from 1.18.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.18.0

Files changed (2) hide show
  1. README.md +1 -0
  2. code_x_glue_tt_text_to_text.py +0 -1
README.md CHANGED
@@ -21,6 +21,7 @@ task_categories:
21
  - conditional-text-generation
22
  task_ids:
23
  - machine-translation
 
24
  ---
25
  # Dataset Card for "code_x_glue_tt_text_to_text"
26
 
 
21
  - conditional-text-generation
22
  task_ids:
23
  - machine-translation
24
+ pretty_name: CodeXGlueTtTextToText
25
  ---
26
  # Dataset Card for "code_x_glue_tt_text_to_text"
27
 
code_x_glue_tt_text_to_text.py CHANGED
@@ -60,7 +60,6 @@ class CodeXGlueTtTextToTextImpl(Child):
60
  yield self.KEYS[i], f"{split_name}/{lang_pair}.{split_name}.{lang}"
61
 
62
  def _generate_examples(self, split_name, file_paths):
63
- print(file_paths)
64
  # Open each file (one for source language and the other for target language)
65
  files = {k: open(file_paths[k], encoding="utf-8") for k in file_paths}
66
 
 
60
  yield self.KEYS[i], f"{split_name}/{lang_pair}.{split_name}.{lang}"
61
 
62
  def _generate_examples(self, split_name, file_paths):
 
63
  # Open each file (one for source language and the other for target language)
64
  files = {k: open(file_paths[k], encoding="utf-8") for k in file_paths}
65