fix wrong file for test set. Current test set is the same as train set.

#4
Files changed (1) hide show
  1. hate_speech_filipino.py +1 -1
hate_speech_filipino.py CHANGED
@@ -69,7 +69,7 @@ class HateSpeechFilipino(datasets.GeneratorBasedBuilder):
69
  """Returns SplitGenerators."""
70
  data_dir = dl_manager.download_and_extract(_URL)
71
  train_path = os.path.join(data_dir, "hatespeech", "train.csv")
72
- test_path = os.path.join(data_dir, "hatespeech", "train.csv")
73
  validation_path = os.path.join(data_dir, "hatespeech", "valid.csv")
74
 
75
  return [
69
  """Returns SplitGenerators."""
70
  data_dir = dl_manager.download_and_extract(_URL)
71
  train_path = os.path.join(data_dir, "hatespeech", "train.csv")
72
+ test_path = os.path.join(data_dir, "hatespeech", "test.csv")
73
  validation_path = os.path.join(data_dir, "hatespeech", "valid.csv")
74
 
75
  return [