-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsentiment.txt
3626 lines (3626 loc) · 44.7 KB
/
sentiment.txt
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
dissention,neg
pardon,pos
dissolution,neg
desirable,pos
sleek,pos
obstruction,neg
protest,neg
segregation,neg
abide,pos
controversial,neg
repress,neg
hate,neg
aggression,neg
conjure,pos
unfeeling,neg
vile,neg
scold,neg
originality,pos
outwit,pos
agitator,neg
daze,neg
tenacity,pos
regal,pos
trauma,neg
immature,neg
pride,pos
forbidden,neg
wondrous,pos
lure,neg
collaborate,pos
rescue,pos
co-operation,pos
compassion,pos
dispense,neg
void,neg
lurk,neg
inhibit,neg
distort,neg
shoot,neg
smack,neg
disobedient,neg
gratification,pos
courageous,pos
disturb,neg
prize,pos
pinch,neg
loneliness,neg
solution,pos
viable,pos
brutish,neg
flashy,pos
enhance,pos
steadfastness,pos
deplorable,neg
straight,pos
triumph,pos
enjoy,pos
veritable,pos
force,neg
monotonous,neg
tired,neg
consistent,pos
welfare,pos
horn,neg
depraved,neg
crave,neg
fabulous,pos
safe,pos
valiant,pos
infiltration,neg
rigorous,neg
kidnap,neg
decadence,neg
even,pos
incompatible,neg
desirous,pos
integrity,pos
hazy,neg
insinuate,neg
mischievous,neg
sunder,neg
reverently,pos
endorse,pos
neat,pos
non-violence,pos
niche,pos
hero,pos
avert,neg
festive,pos
human,pos
fun,neg
protection,pos
humility,pos
wastefulness,neg
shriek,neg
celebration,pos
doldrums,neg
unwillingness,neg
elaborate,pos
homage,pos
culminate,pos
foolishness,neg
controversy,neg
credit,pos
cogent,pos
mentor,pos
superstitious,neg
permit,pos
lonesome,neg
lucrative,pos
anarchist,neg
suitable,pos
menial,neg
cancellation,neg
astute,pos
rebel,neg
golden,pos
envious,neg
divide,neg
stray,neg
mobility,pos
loveless,neg
patience,pos
shoddy,neg
moral,pos
stern,neg
prodigy,pos
stand,pos
devastation,neg
undesirable,neg
utilization,pos
insecurity,neg
hungry,neg
negative,neg
cannibal,neg
insult,neg
plod,neg
mediate,pos
call,pos
asset,pos
moralistic,pos
strike,neg
survive,pos
barbarous,neg
holy,pos
wary,neg
successful,pos
expose,neg
ascribe,pos
award,pos
aware,pos
grief,neg
disruption,neg
warm,pos
adult,pos
excellent,pos
hole,neg
adamant,pos
tariff,neg
sorry,neg
overrun,neg
abundance,pos
confound,neg
join,pos
err,neg
sweeten,pos
accomplishment,pos
show,neg
advocacy,pos
whack,neg
cuddle,pos
substantiate,pos
guise,neg
endow,pos
quarrel,neg
decorative,pos
defile,neg
radiance,pos
pollute,neg
give,pos
deadweight,neg
unjust,neg
assent,pos
frown,neg
sick,neg
impair,neg
accurateness,pos
degenerate,neg
indifferent,neg
cursory,neg
guarantee,pos
straightforward,pos
farce,neg
validity,pos
provide,pos
agony,neg
travel,pos
nuts,neg
damage,neg
amazing,pos
shred,neg
significance,pos
disappoint,neg
actuality,pos
resignation,neg
swiftness,pos
dignified,pos
recompense,pos
badly,neg
fever,neg
beauty,pos
mess,neg
insecure,neg
lag,neg
delicacy,pos
loyalty,pos
misunderstanding,neg
modest,pos
mesh,pos
lay,neg
law,pos
meaningful,pos
ambivalent,neg
austere,neg
impatient,neg
effective,pos
alienate,neg
sorrowful,neg
appreciate,pos
arbitrate,pos
greet,pos
neglect,neg
complexity,neg
rogue,neg
upside,pos
goodbye,pos
order,pos
unsteady,neg
blind,neg
modesty,pos
devote,pos
consent,pos
sickly,neg
fortify,pos
ghastly,neg
innovative,pos
responsive,pos
fidelity,pos
wrought,neg
wickedness,neg
wilt,neg
manageable,pos
fit,pos
hypocrisy,neg
unforeseen,neg
fix,neg
haphazard,neg
comprehend,pos
better,pos
tramp,neg
magnetic,pos
valor,pos
precipitate,neg
admirable,pos
overcome,pos
pleasurable,pos
glorify,pos
unfortunate,neg
vouchsafe,pos
press,neg
enrich,pos
unemployed,neg
amenable,pos
collide,neg
bane,neg
renunciation,neg
diseased,neg
detachment,neg
repulsive,neg
shameful,neg
indulge,neg
interrupt,neg
lifelong,pos
gloom,neg
brightness,pos
sleepless,neg
absolve,pos
explode,neg
deficient,neg
frantically,neg
spotless,pos
affiliate,pos
misbehave,neg
reasonable,pos
fitness,pos
luck,pos
consolidate,pos
interruption,neg
victorious,pos
durability,pos
innocent,pos
marital,pos
slothful,neg
ameliorate,pos
dawn,pos
truant,neg
whip,neg
contend,neg
depress,neg
misfortune,neg
unbound,pos
fraught,neg
useless,neg
undoubted,pos
content,pos
adhesion,pos
encourage,pos
sane,pos
remorse,neg
precision,pos
heavenly,pos
sluggish,neg
independence,pos
protector,pos
barrier,neg
associate,pos
veto,neg
lawless,neg
fugitive,neg
free,pos
negotiate,pos
bestow,pos
thoughtless,neg
struggle,neg
abate,neg
amazement,pos
hand,neg
warmhearted,pos
fret,neg
shaggy,neg
renaissance,pos
refugee,neg
inexpensive,pos
tolerant,pos
flawless,pos
oppose,neg
hopeless,neg
attune,pos
aspire,pos
symbolize,pos
worsen,neg
non-violent,pos
naughty,neg
dunce,neg
reassure,pos
bombard,neg
fantasy,pos
deplete,neg
clamorous,neg
sober,pos
radiate,pos
comic,pos
clarity,pos
excommunication,neg
withheld,neg
acquaint,pos
sarcasm,neg
indeterminate,neg
plentiful,pos
compromise,pos
fumble,neg
inconvenient,neg
bitter,neg
unbroken,pos
reparation,pos
illiterate,neg
paltry,neg
collapse,neg
fanatical,neg
esoteric,neg
inexact,neg
embellish,pos
wisdom,pos
crawl,neg
peculiar,neg
rebuff,neg
subjugate,neg
mercy,pos
congratulatory,pos
anxiety,neg
exultation,pos
elegant,pos
nominate,pos
coward,neg
bitterness,neg
matter,neg
guilt,neg
painful,neg
iron,neg
forlorn,neg
devious,neg
acclaim,pos
willingness,pos
quench,pos
pessimism,neg
mind,neg
mine,neg
taint,neg
antagonistic,neg
rat,neg
hug,pos
lull,neg
mint,pos
pompous,neg
horde,neg
genuine,pos
relapse,neg
alibi,neg
responsible,pos
communicative,pos
elegance,pos
hamper,neg
luxury,pos
punish,neg
effectiveness,pos
unfair,neg
propitious,pos
conducive,pos
hurtful,neg
timidity,neg
object,neg
vexing,neg
prohibitive,neg
simplify,pos
affirmation,pos
addict,neg
plenty,pos
drought,neg
panic,neg
grave,neg
glow,pos
gentle,pos
constancy,pos
potency,pos
antitrust,neg
alarm,neg
lose,neg
treaty,pos
ruthless,neg
thirsty,neg
ridiculous,neg
calmness,pos
principle,pos
unfriendly,neg
oppress,neg
confederation,pos
fussy,neg
discontent,neg
sanctuary,pos
bomb,neg
inspire,pos
endear,pos
rapture,pos
alight,pos
retire,neg
sage,pos
brilliance,pos
undue,neg
uneasiness,neg
liberty,pos
queer,neg
subtle,pos
bail,neg
availability,pos
capitulate,neg
acquit,pos
divinity,pos
spite,neg
undignified,neg
quaint,pos
undoubtedly,pos
wasteful,neg
cupid,pos
individuality,pos
inhibition,neg
bliss,pos
disgust,neg
heartily,pos
enslave,neg
adequate,pos
hoard,neg
regrettable,neg
continuity,pos
anti-social,neg
altruistic,pos
hostility,neg
blur,neg
denounce,neg
leisure,pos
foremost,pos
baffle,neg
roundabout,neg
slanderous,neg
trust,pos
nasty,neg
considerate,pos
relish,pos
volatility,neg
overbearing,neg
bar,neg
subservience,neg
broken-hearted,neg
collusion,neg
idiotic,neg
godliness,pos
bad,neg
multitude,pos
adherence,pos
enchant,pos
bother,neg
ethical,pos
erroneous,neg
unworthy,neg
disaster,neg
fair,pos
riches,pos
sensitivity,pos
irritable,neg
blameless,pos
unexpectedly,neg
wrongful,neg
allure,pos
dispensability,neg
miserable,neg
best,pos
accede,pos
temptation,neg
afloat,pos
compensation,pos
artificial,neg
extol,pos
startle,neg
irk,neg
disprove,neg
scorn,neg
approach,pos
adventuresome,pos
accord,pos
confusion,neg
steady,pos
ignorance,neg
devout,pos
censorship,neg
contamination,neg
dedication,pos
intelligent,pos
drowsy,neg
absorbent,pos
tyranny,neg
protect,pos
accident,neg
irregular,neg
disdain,neg
fault,neg
ill,neg
against,neg
torrent,neg
selective,pos
brag,neg
misunderstand,neg
logic,pos
distinction,pos
contribution,pos
expense,neg
eradicate,neg
shady,neg
self-respect,pos
spear,neg
confide,pos
irresponsible,neg
relaxation,pos
epidemic,neg
condescending,neg
inquisitive,pos
hygiene,pos
comprehension,pos
lowly,neg
majestic,pos
speedily,pos
comical,pos
gratitude,pos
petty,neg
jobless,neg
backwardness,neg
futility,neg
subside,neg
beneficiary,pos
confident,pos
charisma,pos
accentuate,pos
communion,pos
interest,pos
basic,pos
flexible,pos
lovely,pos
adroitly,pos
incompetent,neg
idol,pos
fleeting,neg
easy,pos
efficacy,pos
beastly,neg
suppress,neg
stifle,neg
dismiss,neg
excite,pos
bereavement,neg
uncommon,pos
relevance,pos
coherent,pos
confinement,neg
slap,neg
dote,pos
catch,neg
sad,neg
gracious,pos
unpopular,neg
exception,neg
righteous,pos
sly,neg
affirm,pos
apprehension,neg
tolerable,neg
ail,neg
slam,neg
abrupt,neg
thrash,neg
aid,pos
mangle,neg
moan,neg
mistake,neg
pessimistic,neg
stink,neg
ridicule,neg
congratulation,pos
preeminent,pos
usable,pos
sting,neg
shame,neg
dizzy,neg
jest,pos
exile,neg
amour,pos
uplift,pos
sever,neg
growl,neg
severity,neg
make,pos
wound,neg
harass,neg
verify,pos
rebellion,neg
utilitarian,pos
grapple,neg
complex,neg
harmony,pos
contaminate,neg
silly,neg
indictment,neg
exertion,pos
independent,pos
commonsense,pos
fuss,neg
screw,neg
pick,neg
hang,neg
evil,neg
displace,neg
delight,pos
corruption,neg
nix,neg
descry,pos
opportunity,pos
haggard,neg
kid,pos
rebut,neg
intrusion,neg
humble,pos
redeem,pos
inherit,pos
bonny,pos
savings,pos
contact,pos
impediment,neg
incapable,neg
abound,pos
etiquette,pos
stringent,neg
appease,pos
just,pos
sentence,neg
athletic,pos
boastful,neg
dignify,pos
bruise,neg
fantastic,pos
repose,pos
beset,neg
disguise,neg
fullness,pos
plight,neg
brandish,neg
enlighten,pos
visualization,pos
agile,pos
ease,pos
vie,neg
advancement,pos
hag,neg
exalt,pos
snarl,neg
affinity,pos
board,neg
beloved,pos
prison,neg
falter,neg
pitiful,neg
moody,neg
humanity,pos
coarseness,neg
submissive,neg
wreck,neg
skeptical,neg
involuntary,neg
survival,pos
disagreement,neg
obedient,pos
auspicious,pos
discreet,pos
indicative,pos
roughness,neg
affability,pos
sanitary,pos
shadow,neg
unique,pos
befit,pos
retreat,neg
disadvantage,neg
desire,neg
dignity,pos
triumphal,pos
brutality,neg
gift,pos
uncivil,neg
contradict,neg
grizzly,neg
gifted,pos
dishonest,neg
unnecessary,neg
splendor,pos
arbitrary,neg
hung,neg
invaluable,pos
security,pos
starvation,neg
battlefield,neg
beneficial,pos
hunt,neg
envision,pos
deal,neg
repudiate,neg
excitedness,pos
refinement,pos
deaf,neg
dead,neg
accost,neg
hassle,neg
displeasure,neg
dear,pos
pain,neg
bore,neg
intellect,pos
disavowal,neg
nobleman,pos
congratulate,pos
humor,pos
combat,neg
establish,pos
unavoidable,neg
creative,pos
witty,pos
flounder,neg
convict,neg
readily,pos
adorable,pos
palatable,pos
plot,neg
brawl,neg
burn,neg
blackmail,neg
constructive,pos
confrontation,neg
defensive,neg
notorious,neg
memorable,pos
bury,neg
chafe,neg
empowerment,pos
unsteadiness,neg
restlessness,neg
conceal,neg
anomalous,neg
donation,pos
trustworthy,pos
blithe,pos
despair,neg
ensure,pos
transgress,neg
cherish,pos
commit,neg
twitch,neg
meddle,neg
croak,neg
impartiality,pos
dilemma,neg
anxiousness,neg
superlative,pos
civil,pos
infraction,neg
honeymoon,pos
bound,neg
intellectual,pos
accommodate,pos
respectable,pos
right,pos
formidable,neg
squander,neg
annoyance,neg
familiarize,pos
deception,neg
implore,neg
disinterest,neg
indispensable,pos
suffice,pos
illustrious,pos
fervent,pos
splendid,pos
derision,neg
fought,neg
satisfactorily,pos
flatter,pos
venomous,neg
calm,pos
questionable,neg
starve,neg
overjoyed,pos
immorality,neg
fascination,pos
heal,pos
discourage,neg
vitality,pos
heinous,neg
failure,neg
understandable,pos
prettily,pos
blindness,neg
safeguard,pos
true,pos
dump,neg
humiliate,neg
absent,neg
counsel,pos
injury,neg
captive,neg
invincible,pos
bargain,pos
generosity,pos
adore,pos
decorate,pos
propaganda,neg
adorn,pos
disgrace,neg
prosecute,pos
classic,pos
fury,neg
covert,neg
unnerve,neg
crumble,neg
soothe,pos
subsist,pos
revitalize,pos
fidget,neg
mediocre,neg
dent,neg
harassment,neg
liberalism,pos
rough,neg
discriminate,neg
disputable,neg
dying,neg
floor,neg
authoritative,pos
excel,pos
willful,pos
interested,pos
stagnant,neg
unwilling,neg
frolic,pos
erosion,neg
naive,neg
subsidize,pos
fortitude,pos
handicap,neg
liquidate,neg
welcome,pos
polite,pos
comely,pos
warp,neg
persecution,neg
discharge,neg
entrust,pos
hurt,neg
congested,neg
vastness,pos
triumphant,pos
bullet,neg
quandary,neg
withhold,neg
cohesion,pos
accolade,pos
cheater,neg
push,neg
serious,pos
intimacy,pos
backward,neg
precedent,pos
subvert,neg
fearsome,neg
befriend,pos
revoke,neg
remarkable,pos
dance,pos
particular,neg
mild,pos
grateful,pos
battle,neg
remarkably,pos
abundant,pos
rot,neg
indefinite,neg
discern,pos
idealism,pos
uneven,neg
deceitful,neg
foe,neg
involve,neg
sufferer,neg
worth,pos
vex,neg
aristocratic,pos
compensate,pos
dissatisfied,neg
terror,neg
oversight,neg
ride,neg
eliminate,neg
persevere,pos
division,neg
protective,pos
advantage,pos
navigable,pos
unfamiliar,neg
sloppy,neg
liability,neg
turbulent,neg
gloomy,neg
mourn,neg
trouble,neg
blast,neg
exact,pos
feeble,neg
cool,neg
dim,neg
din,neg
impressive,pos
strain,neg
tear,neg
economize,pos
dig,pos
gun,neg
noiseless,pos
settle,pos
excellence,pos
encroach,neg
round,pos
wanton,neg
brave,pos
regret,neg
insignificant,neg
somber,neg