init
Browse files- README.md +6 -9
- process/tweet_ner.py +0 -1
README.md
CHANGED
@@ -50,35 +50,32 @@ The data fields are the same among all splits.
|
|
50 |
|
51 |
#### tweet_topic
|
52 |
- `text`: a `string` feature.
|
53 |
-
- `
|
54 |
-
- `id`: a `string` feature.
|
55 |
- `date`: a `string` feature.
|
56 |
|
57 |
#### tweet_ner7
|
58 |
- `text`: a `string` feature.
|
59 |
- `text_tokenized`: a list of `string` feature.
|
60 |
-
- `
|
61 |
-
- `id`: a `string` feature.
|
62 |
- `date`: a `string` feature.
|
63 |
|
64 |
#### tweet_qa
|
65 |
- `text`: a `string` feature.
|
66 |
-
- `
|
67 |
- `paragraph`: a `string` feature.
|
68 |
- `question`: a `string` feature.
|
69 |
|
70 |
#### tweet_intimacy
|
71 |
- `text`: a `string` feature.
|
72 |
-
- `
|
73 |
|
74 |
#### tweet_similarity
|
75 |
- `text_1`: a `string` feature.
|
76 |
- `text_2`: a `string` feature.
|
77 |
-
- `
|
78 |
|
79 |
#### tempo_wic
|
80 |
-
- `
|
81 |
-
- `id`: a `string` feature.
|
82 |
- `word`: a `string` feature.
|
83 |
- `text_1`: a `string` feature.
|
84 |
- `text_tokenized_1`: a list of `string` feature.
|
|
|
50 |
|
51 |
#### tweet_topic
|
52 |
- `text`: a `string` feature.
|
53 |
+
- `gold_label_list`: a list of `string` feature.
|
|
|
54 |
- `date`: a `string` feature.
|
55 |
|
56 |
#### tweet_ner7
|
57 |
- `text`: a `string` feature.
|
58 |
- `text_tokenized`: a list of `string` feature.
|
59 |
+
- `gold_label_sequence`: a list of `string` feature.
|
|
|
60 |
- `date`: a `string` feature.
|
61 |
|
62 |
#### tweet_qa
|
63 |
- `text`: a `string` feature.
|
64 |
+
- `gold_label_str`: a `string` feature.
|
65 |
- `paragraph`: a `string` feature.
|
66 |
- `question`: a `string` feature.
|
67 |
|
68 |
#### tweet_intimacy
|
69 |
- `text`: a `string` feature.
|
70 |
+
- `gold_score`: a `float` feature.
|
71 |
|
72 |
#### tweet_similarity
|
73 |
- `text_1`: a `string` feature.
|
74 |
- `text_2`: a `string` feature.
|
75 |
+
- `gold_score`: a `float` feature.
|
76 |
|
77 |
#### tempo_wic
|
78 |
+
- `gold_label_binary`: a `int` feature.
|
|
|
79 |
- `word`: a `string` feature.
|
80 |
- `text_1`: a `string` feature.
|
81 |
- `text_tokenized_1`: a list of `string` feature.
|
process/tweet_ner.py
CHANGED
@@ -7,7 +7,6 @@ data = load_dataset("tner/tweetner7")
|
|
7 |
|
8 |
|
9 |
def process(tmp):
|
10 |
-
tmp.pop("label_name")
|
11 |
tmp = [i.to_dict() for _, i in tmp.iterrows()]
|
12 |
for i in tmp:
|
13 |
i.pop("id")
|
|
|
7 |
|
8 |
|
9 |
def process(tmp):
|
|
|
10 |
tmp = [i.to_dict() for _, i in tmp.iterrows()]
|
11 |
for i in tmp:
|
12 |
i.pop("id")
|