Update PEYMA.py
Browse files
PEYMA.py
CHANGED
@@ -14,9 +14,9 @@ _CITATION = """\\
|
|
14 |
_DESCRIPTION = """PEYMA dataset includes 7,145 sentences with a total of 302,530 tokens from which 41,148 tokens are tagged with seven different classes."""
|
15 |
|
16 |
_DATA_PATH = {
|
17 |
-
'train': os.path.join('
|
18 |
-
'test': os.path.join('
|
19 |
-
'val': os.path.join('
|
20 |
}
|
21 |
|
22 |
class PEYMAConfig(datasets.BuilderConfig):
|
|
|
14 |
_DESCRIPTION = """PEYMA dataset includes 7,145 sentences with a total of 302,530 tokens from which 41,148 tokens are tagged with seven different classes."""
|
15 |
|
16 |
_DATA_PATH = {
|
17 |
+
'train': os.path.join('data', 'train.txt'),
|
18 |
+
'test': os.path.join('data', 'test.txt'),
|
19 |
+
'val': os.path.join('data', 'dev.txt')
|
20 |
}
|
21 |
|
22 |
class PEYMAConfig(datasets.BuilderConfig):
|