Datasets:
Remove print
Browse files- 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 |
|