Commit
•
b017115
1
Parent(s):
e31f422
Fix path to test data (#2)
Browse files- Fix path to test data (4c9747aec152d27a2e2666a207b411ef3893670d)
- hatespeech_filipino.py +1 -1
hatespeech_filipino.py
CHANGED
@@ -67,7 +67,7 @@ class HateSpeechFilipino(datasets.GeneratorBasedBuilder):
|
|
67 |
"""Returns SplitGenerators."""
|
68 |
data_dir = dl_manager.download_and_extract(_URL)
|
69 |
train_path = os.path.join(data_dir, "hatespeech", "train.csv")
|
70 |
-
test_path = os.path.join(data_dir, "hatespeech", "
|
71 |
validation_path = os.path.join(data_dir, "hatespeech", "valid.csv")
|
72 |
|
73 |
return [
|
|
|
67 |
"""Returns SplitGenerators."""
|
68 |
data_dir = dl_manager.download_and_extract(_URL)
|
69 |
train_path = os.path.join(data_dir, "hatespeech", "train.csv")
|
70 |
+
test_path = os.path.join(data_dir, "hatespeech", "test.csv")
|
71 |
validation_path = os.path.join(data_dir, "hatespeech", "valid.csv")
|
72 |
|
73 |
return [
|