-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraining_data.json
More file actions
2502 lines (2502 loc) · 55.2 KB
/
Copy pathtraining_data.json
File metadata and controls
2502 lines (2502 loc) · 55.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"text": "我今天很开心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "太棒了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "这个礼物我很喜欢",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "考试得了满分,开心死了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "和朋友聚会真愉快",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "吃到好吃的火锅,满足",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "收到录取通知书了,超兴奋",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "项目成功上线,团队太牛了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "老板给我涨工资了,开心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "今天天气好,心情好",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "爱死这个电影了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "旅行太有意思了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "学会新技能,有成就感",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "被夸奖了,心里美滋滋",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "中奖了,太幸运了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "孩子考了第一名,骄傲",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "和家人在一起很幸福",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "买到喜欢的衣服,开心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "听到好消息,振奋",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "工作完成得很好,满意",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "这个游戏太好玩了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "看到的风景太美了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "吃到妈妈做的饭,温暖",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "被帮助了,感激",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "达成目标,有收获",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "朋友送了礼物,惊喜",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "业绩达标,有动力",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "论文发表了,激动",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "升职了,努力有回报",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "宠物很可爱,治愈",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "看到搞笑视频,笑死了",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "约会顺利,甜蜜",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "收到红包,开心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "放假了,自由",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "身体康复了,舒心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "买到限量款,满足",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "团队合作愉快,高效",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "学习进步了,自信",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "解决了难题,轻松",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "收到生日祝福,感动",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "吃到心心念念的餐厅,满足",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "投资机会赚了,开心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "工作得到认可,自豪",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "看到彩虹,治愈",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "孩子会走路了,开心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "买到合适的房子,安心",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "旅行拍的美照,喜欢",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "完成马拉松,有成就感",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "这个产品太差了",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "今天倒霉透了",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "考试没及格,难过",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "和朋友吵架了,烦躁",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "吃到过期食品,恶心",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "被辞退了,沮丧",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "项目失败了,挫败",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "钱包丢了,着急",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "生病了,难受",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "天气不好,心情差",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "讨厌这个电影",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "旅行遇到暴雨,扫兴",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "学不会新技能,挫败",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "被批评了,委屈",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "没中奖,失望",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "孩子成绩差,焦虑",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "和家人大吵一架,伤心",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "买到劣质衣服,生气",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "听到坏消息,低落",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "工作没完成,自责",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "这个游戏太垃圾了",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "看到的风景太丑了",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "吃到难吃的饭,反胃",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "被欺负了,愤怒",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "目标没达成,沮丧",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "朋友借了钱不还,失望",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "业绩不达标,压力大",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "论文被拒了,挫败",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "降职了,失落",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "宠物生病了,担心",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "看到恐怖视频,害怕",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "约会分手了,伤心",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "红包被骗了,愤怒",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "开学了,烦躁",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "病情加重了,痛苦",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "买到假货,生气",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "团队不配合,低效",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "学习退步了,焦虑",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "遇到难题,头疼",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "没人记得生日,失落",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "吃到苍蝇,恶心",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "投资亏了,心疼",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "工作被否定,挫败",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "看到车祸,惊恐",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "孩子受伤了,心疼",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "房子漏水,烦躁",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "旅行行李丢了,着急",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "马拉松退赛,遗憾",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "你好,请问现在几点",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "我今天吃了米饭",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "明天要下雨",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "我在写代码",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "桌子是红色的",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "这本书有200页",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "火车票是明天的",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "咖啡是热的",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "会议在下午3点",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "电脑屏幕是27寸",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "北京是中国的首都",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "水的沸点是100度",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "地球是圆的",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "一年有12个月",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "手机电量还剩50%",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "快递在途中",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "地铁要等5分钟",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "银行卡余额1000元",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "今天的气温是25度",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "公司在CBD区",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "我正在学习Python",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "文件保存在桌面",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "杯子是玻璃做的",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "空调开着26度",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "公交车还有2站到",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "身份证到期了",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "护照在抽屉里",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "眼镜度数是300度",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "电影时长2小时",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "餐厅营业到晚上10点",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "人工智能是热门领域",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "神经网络需要训练",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "数据要预处理",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "算法复杂度是O(n)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "模型准确率90%",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "数据库存了1000条记录",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "向量维度是768",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "复合体理学是新理论",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "能量需要合理分配",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "认知是重要能力",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "感知是第一步",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "行动要谨慎",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "学习需要坚持",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "推理要严谨",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "决策要全面",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "任务要优先级排序",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "信息要筛选",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "知识要积累",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "经验要总结",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "进步要持续",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "桌子是红色的(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "快递在途中(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "太棒了(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "生病了,难受(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "行动要谨慎(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "考试得了满分,开心死了(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "论文被拒了,挫败(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "没人记得生日,失落(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "和家人大吵一架,伤心(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "桌子是红色的(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "团队不配合,低效(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "考试得了满分,开心死了(补充)(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "老板给我涨工资了,开心(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "解决了难题,轻松(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "认知是重要能力(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "被辞退了,沮丧(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "数据要预处理(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "和家人在一起很幸福(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "你好,请问现在几点(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "学习需要坚持(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "降职了,失落(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "和家人在一起很幸福(补充)(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "论文发表了,激动(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "投资机会赚了,开心(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "升职了,努力有回报(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "快递在途中(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "行动要谨慎(补充)(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "推理要严谨(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "没人记得生日,失落(补充)(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "旅行遇到暴雨,扫兴(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "没人记得生日,失落(补充)(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "餐厅营业到晚上10点(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "行动要谨慎(补充)(补充)(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "看到的风景太丑了(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "朋友借了钱不还,失望(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "钱包丢了,着急(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "团队不配合,低效(补充)(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "天气不好,心情差(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "吃到妈妈做的饭,温暖(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "工作没完成,自责(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "进步要持续(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "收到生日祝福,感动(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "中奖了,太幸运了(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "团队合作愉快,高效(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "神经网络需要训练(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "达成目标,有收获(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "旅行遇到暴雨,扫兴(补充)(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "认知是重要能力(补充)",
"sentiment": "neutral",
"confidence": 1.0
},
{
"text": "收到红包,开心(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "讨厌这个电影(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "考试得了满分,开心死了(补充)(补充)(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "看到恐怖视频,害怕(补充)",
"sentiment": "negative",
"confidence": 1.0
},
{
"text": "买到限量款,满足(补充)",
"sentiment": "positive",
"confidence": 1.0
},
{
"text": "遇到难题,头疼(补充)",
"sentiment": "negative",
"confidence": 1.0