Datasets:
Update URL
Browse files- EMEA-V3.py +0 -8
EMEA-V3.py
CHANGED
@@ -66,10 +66,6 @@ class EMEA_V3(datasets.GeneratorBasedBuilder):
|
|
66 |
# Download the CSV
|
67 |
data_dir = dl_manager.download(_URL.format(self.config.name))
|
68 |
|
69 |
-
print("*"*50)
|
70 |
-
print("data_dir : ", data_dir)
|
71 |
-
print("*"*50)
|
72 |
-
|
73 |
return [
|
74 |
datasets.SplitGenerator(
|
75 |
name=datasets.Split.TRAIN,
|
@@ -90,10 +86,6 @@ class EMEA_V3(datasets.GeneratorBasedBuilder):
|
|
90 |
|
91 |
for index, row in df.iterrows():
|
92 |
|
93 |
-
print(row['lang'])
|
94 |
-
print(row['source_text'])
|
95 |
-
print(row['target_text'])
|
96 |
-
|
97 |
# Get langue pair
|
98 |
src, target = str(row['lang']).split("-")
|
99 |
|
|
|
66 |
# Download the CSV
|
67 |
data_dir = dl_manager.download(_URL.format(self.config.name))
|
68 |
|
|
|
|
|
|
|
|
|
69 |
return [
|
70 |
datasets.SplitGenerator(
|
71 |
name=datasets.Split.TRAIN,
|
|
|
86 |
|
87 |
for index, row in df.iterrows():
|
88 |
|
|
|
|
|
|
|
|
|
89 |
# Get langue pair
|
90 |
src, target = str(row['lang']).split("-")
|
91 |
|