update
Browse files- UTS_Text.py +1 -1
UTS_Text.py
CHANGED
@@ -73,8 +73,8 @@ class UTSText(datasets.GeneratorBasedBuilder):
|
|
73 |
|
74 |
def _generate_examples(self, filepath):
|
75 |
with open(filepath, encoding="utf-8") as f:
|
76 |
-
print(line)
|
77 |
for line in f:
|
|
|
78 |
item = {
|
79 |
"text": line.strip()
|
80 |
}
|
|
|
73 |
|
74 |
def _generate_examples(self, filepath):
|
75 |
with open(filepath, encoding="utf-8") as f:
|
|
|
76 |
for line in f:
|
77 |
+
print(line)
|
78 |
item = {
|
79 |
"text": line.strip()
|
80 |
}
|