qanastek commited on
Commit
dfe15b4
1 Parent(s): ef362c7

Update E3C.py

Browse files
Files changed (1) hide show
  1. E3C.py +8 -1
E3C.py CHANGED
@@ -196,11 +196,18 @@ class E3C(datasets.GeneratorBasedBuilder):
196
 
197
  def _generate_examples(self, filepath, split):
198
 
 
 
 
199
  all_res = []
200
 
201
  key = 0
202
 
203
- for content in self.get_parsed_data(filepath):
 
 
 
 
204
 
205
  print(content)
206
 
 
196
 
197
  def _generate_examples(self, filepath, split):
198
 
199
+ print(filepath)
200
+ print(split)
201
+
202
  all_res = []
203
 
204
  key = 0
205
 
206
+ parsed_content = self.get_parsed_data(filepath)
207
+
208
+ print(parsed_content)
209
+
210
+ for content in parsed_content:
211
 
212
  print(content)
213