qanastek commited on
Commit
8201312
1 Parent(s): 75a635f

Remove print

Browse files
Files changed (1) hide show
  1. MASSIVE.py +0 -4
MASSIVE.py CHANGED
@@ -415,8 +415,6 @@ class MASSIVE(datasets.GeneratorBasedBuilder):
415
 
416
  path = filepath + "/1.0/data/" + l + ".jsonl"
417
 
418
- print(f"->{l}<-")
419
-
420
  # Read the file
421
  f = open(path ,"r")
422
  lines = f.read().split("\n")
@@ -426,8 +424,6 @@ class MASSIVE(datasets.GeneratorBasedBuilder):
426
 
427
  data = json.loads(line)
428
 
429
- # print(data["id"])
430
-
431
  if data["partition"] != split:
432
  continue
433
 
 
415
 
416
  path = filepath + "/1.0/data/" + l + ".jsonl"
417
 
 
 
418
  # Read the file
419
  f = open(path ,"r")
420
  lines = f.read().split("\n")
 
424
 
425
  data = json.loads(line)
426
 
 
 
427
  if data["partition"] != split:
428
  continue
429