Datasets:
Tasks:
Text Classification
Sub-tasks:
multi-class-classification
Languages:
Tagalog
Size:
1K<n<10K
License:
sabilmakbar
commited on
Fix the file pointer in Dataset Loading for Test Split
Browse filesas raised in [this issue](https://huggingface.co/datasets/dengue_filipino/discussions/3), looks like the issue came from L77. Therefore, I'm creating the PR to fix the issue (it's also raised in [another experiments using `dengue-filipino`](https://github.com/bazingagin/npc_gzip/issues/13).
- dengue_filipino.py +1 -1
dengue_filipino.py
CHANGED
@@ -74,7 +74,7 @@ class DengueFilipino(datasets.GeneratorBasedBuilder):
|
|
74 |
"""Returns SplitGenerators."""
|
75 |
data_dir = dl_manager.download_and_extract(_URL)
|
76 |
train_path = os.path.join(data_dir, "dengue", "train.csv")
|
77 |
-
test_path = os.path.join(data_dir, "dengue", "
|
78 |
validation_path = os.path.join(data_dir, "dengue", "valid.csv")
|
79 |
|
80 |
return [
|
|
|
74 |
"""Returns SplitGenerators."""
|
75 |
data_dir = dl_manager.download_and_extract(_URL)
|
76 |
train_path = os.path.join(data_dir, "dengue", "train.csv")
|
77 |
+
test_path = os.path.join(data_dir, "dengue", "test.csv")
|
78 |
validation_path = os.path.join(data_dir, "dengue", "valid.csv")
|
79 |
|
80 |
return [
|