xcz0 commited on
Commit
266d0b4
·
verified ·
1 Parent(s): bf8bb15

Upload 4 files

Browse files
.gitattributes CHANGED
@@ -53,3 +53,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
  *.jpeg filter=lfs diff=lfs merge=lfs -text
55
  *.webp filter=lfs diff=lfs merge=lfs -text
 
 
 
 
53
  *.jpg filter=lfs diff=lfs merge=lfs -text
54
  *.jpeg filter=lfs diff=lfs merge=lfs -text
55
  *.webp filter=lfs diff=lfs merge=lfs -text
56
+ sentiment_analysis_testa.csv filter=lfs diff=lfs merge=lfs -text
57
+ sentiment_analysis_trainingset.csv filter=lfs diff=lfs merge=lfs -text
58
+ sentiment_analysis_validationset.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,72 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 说明
2
+
3
+ 数据集来源于[AI Challenger 2018](https://github.com/AIChallenger/AI_Challenger_2018)
4
+
5
+ sentiment_analysis_trainingset.csv 为训练集数据文件,共105000条评论数据
6
+ sentiment_analysis_validationset.csv 为验证集数据文件,共15000条评论数据
7
+ sentiment_analysis_testa.csv 为测试集A数据文件,共15000条评论数据
8
+
9
+ 数据集分为训练、验证、测试A与测试B四部分。数据集中的评价对象按照粒度不同划分为两个层次,层次一为粗粒度的评价对象,例如评论文本中涉及的服务、位置等要素;层次二为细粒度的情感对象,例如“服务”属性中的“服务人员态度”、“排队等候时间”等细粒度要素。评价对象的具体划分如下表所示。
10
+
11
+ The dataset is divided into four parts: training, validation, test A and test B. This dataset builds a two-layer labeling system according to the evaluation granularity: the first layer is the coarse-grained evaluation object, such as “service” and “location”; the second layer is the fine-grained emotion object, such as “waiter’s attitude” and “wait time” in “service” category. The specific description is shown in the following table.
12
+
13
+ |层次一(The first layer)|层次二(The second layer)|
14
+ |---|---|
15
+ |位置(location)|交通是否便利(traffic convenience)|
16
+ |-|距离商圈远近(distance from business district)|
17
+ |-|是否容易寻找(easy to find)|
18
+ |服务(service)|排队等候时间(wait time)|
19
+ |-|服务人员态度(waiter’s attitude)|
20
+ |-|是否容易停车(parking convenience)|
21
+ |-|点菜/上菜速度(serving speed)|
22
+ |价格(price)|价格水平(price level)|
23
+ |-|性价比(cost-effective)|
24
+ |-|折扣力度(discount)|
25
+ |环境(environment)|装修情况(decoration)|
26
+ |-|嘈杂情况(noise)|
27
+ |-|就餐空间(space)|
28
+ |-|卫生情况(cleaness)|
29
+ |菜品(dish)|分量(portion)|
30
+ |-|口感(taste)|
31
+ |-|外观(look)|
32
+ |-|推荐程度(recommendation)|
33
+ |其他(others)|本次消费感受(overall experience)|
34
+ |-|再次消费的意愿(willing to consume again)|
35
+
36
+ 每个细粒度要素的情感倾向有四种状态:正向、中性、负向、未提及。使用[1,0,-1,-2]四个值对情感倾向进行描述,情感倾向值及其含义对照表如下所示:
37
+
38
+ There are four sentimental types for every fine-grained element: Positive, Neutral, Negative and Not mentioned, which are labelled as 1, 0, -1 and-2. The meaning of these four labels are listed below.
39
+
40
+ |情感倾向值(Sentimental labels)|含义(Meaning)|
41
+ |---|---|
42
+ |1|正面情感(Positive)
43
+ |0|中性情感(Neutral)
44
+ |-1|负面情感(Negative)
45
+ |-2|情感倾向未提及(Not mentioned)
46
+
47
+ 数据标注示例如下:
48
+ An example of one labelled review:
49
+ >味道不错的面馆,性价比也相当之高,分量很足~女生吃小份,胃口小的,可能吃不完呢,。环境在面馆来说算是好的,至少看上去堂子很亮,也比较干净,一般苍蝇馆子还是比不上这个卫生状况的。中午饭点的时候,人很多,人行道上也是要坐满的,隔壁的冒菜馆子,据说是一家,有时候也会开放出来坐吃面的人。
50
+
51
+ |层次一(The first layer)|层次二(The second layer)|标注 (Label)|
52
+ |---|---|---|
53
+ |位置(location)|交通是否便利(traffic convenience)|-2
54
+ |-|距离商圈远近(distance from business district)|-2
55
+ |-|是否容易寻找(easy to find)|-2
56
+ |服务(service)|排队等候时间(wait time)|-2
57
+ |-|服务人员态度(waiter’s attitude)|-2
58
+ |-|是否容易停车(parking convenience)|-2
59
+ |-|点菜/上菜速度(serving speed)|-2
60
+ |价格(price)|价格水平(price level)|-2
61
+ |-|性价比(cost-effective)|1
62
+ |-|折扣力度(discount)|-2
63
+ |环境(environment)|装修情况(decoration)|1
64
+ |-|嘈杂情况(noise)|-2
65
+ |-|就餐空间(space)|-2
66
+ |-|卫生情况(cleaness)|1
67
+ |菜品(dish)|分量(portion)|1
68
+ |-|口感(taste)|1
69
+ |-|外观(look)|-2
70
+ |-|推荐程度(recommendation)|-2
71
+ |其他(others)|本次消费感受(overall experience)|1
72
+ |-|再次消费的意愿(willing to consume again)|-2
sentiment_analysis_testa.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:807246836a9dc6974860bdb18a33be07cb850d2ed5e28c87170514fe16df33d2
3
+ size 15608586
sentiment_analysis_trainingset.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9fe39cb75d3cbe8cb72871b963678fd56885d55fe6a80182838d3ef71955fea
3
+ size 112621685
sentiment_analysis_validationset.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a72efc85000b735c4a1e795e3f854c880887bf0a25216c8e81e5d99ddb6979f8
3
+ size 16016113