Datasets:

Languages:
English
ArXiv:
License:
shlomihod commited on
Commit
dfced60
·
1 Parent(s): 506b85f

point data URL to locall file

Browse files
Files changed (1) hide show
  1. civil-comments-wilds.py +9 -4
civil-comments-wilds.py CHANGED
@@ -105,6 +105,7 @@ _CITATION = """\
105
  }
106
  """
107
 
 
108
  _DESCRIPTION = """\
109
  In this dataset, given a textual dialogue i.e. an utterance along with two previous turns of context, the goal was to infer the underlying emotion of the utterance by choosing from four emotion classes - Happy, Sad, Angry and Others.
110
  """
@@ -122,10 +123,14 @@ class CivilCommentsWILDSConfig(datasets.BuilderConfig):
122
  self.name = name
123
 
124
 
125
- _URL = (
126
- "https://worksheets.codalab.org/rest/bundles/0x8cd3de0634154aeaad2ee6eb96723c6e/"
127
- "contents/blob/all_data_with_identities.csv"
128
- )
 
 
 
 
129
 
130
  class CivilCommentsWILDS(datasets.GeneratorBasedBuilder):
131
  """SemEval-2019 Task 3: EmoContext Contextual Emotion Detection in Text. Version 1.0.0"""
 
105
  }
106
  """
107
 
108
+
109
  _DESCRIPTION = """\
110
  In this dataset, given a textual dialogue i.e. an utterance along with two previous turns of context, the goal was to infer the underlying emotion of the utterance by choosing from four emotion classes - Happy, Sad, Angry and Others.
111
  """
 
123
  self.name = name
124
 
125
 
126
+ # _URL = (
127
+ # "https://worksheets.codalab.org/rest/bundles/0x8cd3de0634154aeaad2ee6eb96723c6e/"
128
+ # "contents/blob/all_data_with_identities.csv"
129
+ # )
130
+
131
+
132
+ _URL = "all_data_with_identities.csv"
133
+
134
 
135
  class CivilCommentsWILDS(datasets.GeneratorBasedBuilder):
136
  """SemEval-2019 Task 3: EmoContext Contextual Emotion Detection in Text. Version 1.0.0"""