Janosch Hoefer commited on
Commit
8feec97
1 Parent(s): ce38e82

updated dataset features

Browse files
Files changed (1) hide show
  1. tweetyface.py +5 -2
tweetyface.py CHANGED
@@ -41,9 +41,10 @@ _URLs = {
41
  },
42
  }
43
 
44
- _VERSION = "0.2.0"
45
 
46
  _LICENSE = """
 
47
  """
48
 
49
 
@@ -99,7 +100,9 @@ class TweetyFace(datasets.GeneratorBasedBuilder):
99
  {
100
  "text": datasets.Value("string"),
101
  "label": datasets.features.ClassLabel(names=names),
102
- "idx": datasets.Value("int64"),
 
 
103
  }
104
  ),
105
  homepage=_HOMEPAGE,
 
41
  },
42
  }
43
 
44
+ _VERSION = "0.3.0"
45
 
46
  _LICENSE = """
47
+ Apache License Version 2.0
48
  """
49
 
50
 
 
100
  {
101
  "text": datasets.Value("string"),
102
  "label": datasets.features.ClassLabel(names=names),
103
+ "idx": datasets.Value("string"),
104
+ "ref_tweet": datasets.Value("bool"),
105
+ "reply_tweet": datasets.Value("bool"),
106
  }
107
  ),
108
  homepage=_HOMEPAGE,