-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpanded.txt
executable file
·1572 lines (1572 loc) · 39.3 KB
/
expanded.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
seek # v # 3
seek
try, seek, attempt, essay, assay act, move
-->neg
Similarity Values:
neg=>0.005554806259094883 pos=>0.0032768203676895157
ipod # n # 1
ipod
iPod stereo, stereophony, stereo system, stereophonic system
-->pos
Similarity Values:
neg=>0.011410136137303791 pos=>0.026818845041194715
ban # n # 1
ban
prohibition, ban, proscription decree, edict, fiat, order, rescript
-->pos
Similarity Values:
neg=>0.004366656386127566 pos=>0.00990396542958946
plot # v # 4
plot
plot plan, project, contrive, design
-->pos
Similarity Values:
neg=>0.02164853450840962 pos=>0.051070120658193656
censure # n # 1
censure
censure, animadversion disapprobation, condemnation
-->neg
Similarity Values:
neg=>0.07723804468501266 pos=>0.013535080258389029
bid # n # 1
bid
command, bid, bidding, dictation speech act
-->neg
Similarity Values:
neg=>0.07592899354698653 pos=>0.03164372474267518
boost # v # 3
boost
promote, advance, boost, further, encourage support, back up
-->pos
Similarity Values:
neg=>0.08513995972612994 pos=>0.10923679722074774
hand # v # 1
hand
pass, hand, reach, pass on, turn over, give transfer
-->pos
Similarity Values:
neg=>0.019143700028184767 pos=>0.02106999464848993
draw # n # 5
draw
draw playing card
-->neg
Similarity Values:
neg=>0.05034797873322793 pos=>0.018116347663435953
tough # a # 3
tough
tough (vs. tender), toughened calloused, callous, thickened enured, inured, hardened weather-beaten
-->neg
Similarity Values:
neg=>0.01677930103524339 pos=>0.016318259927369145
clash # n # 3
clash
clash conflict
-->neg
Similarity Values:
neg=>0.1676461777796896 pos=>0.007180729421680863
facelift # n # 1
facelift
face lift, facelift, lift, face lifting, cosmetic surgery, rhytidectomy, rhytidoplasty, nip and tuck plastic surgery, reconstructive surgery, anaplasty
-->pos
Similarity Values:
neg=>0.015972507330122575 pos=>0.02630303179317157
test # n # 5
test
test, trial, run attempt, effort, endeavor, endeavour, try
-->neg
Similarity Values:
neg=>0.008371054099268195 pos=>0.005685597168713268
boast # n # 1
boast
boast, boasting, self-praise, jactitation speech act
-->pos
Similarity Values:
neg=>0.02802723348581173 pos=>0.03093619782268517
issue # v # 2
issue
issue, supply distribute
-->pos
Similarity Values:
neg=>0.03390623923472163 pos=>0.03885493948009411
report # n # 3
report
report, news report, story, account, write up news
-->neg
Similarity Values:
neg=>0.031206940840052506 pos=>0.0053307745149717995
bleak # a # 3
bleak
bleak, cutting, raw cold (vs. hot)
-->neg
Similarity Values:
neg=>0.01960221007746846 pos=>4.653460504005626E-4
step # v # 9
step
pace, step quantify, measure
-->pos
Similarity Values:
neg=>0.0064481744060865985 pos=>0.015233605079549043
urge # v # 1
urge
urge, urge on, press, exhort rede, advise, counsel
-->pos
Similarity Values:
neg=>0.00407039950435141 pos=>0.01127416517397371
nrbreakthrough # n # 3
nrbreakthrough
null
-->neg
Similarity Values:
neg=>0.011015778612719311 pos=>0.010052594076411906
start # n # 5
start
beginning, start, commencement change of state
-->pos
Similarity Values:
neg=>0.029763072824285596 pos=>0.06133578205042025
overcome # v # 1
overcome
get the better of, overcome, defeat
-->neg
Similarity Values:
neg=>0.11146452455421299 pos=>0.05976825277670352
ragged # a # 1
ragged
ragged worn (vs. new)
-->neg
Similarity Values:
neg=>0.00709072375375892 pos=>0.005008473938318493
hail # v # 1
hail
acclaim, hail, herald applaud
-->neg
Similarity Values:
neg=>0.0041045401218364795 pos=>0.0010797969970430482
fight # v # 1
fight
contend, fight, struggle
-->neg
Similarity Values:
neg=>0.14007216732374494 pos=>0.01198235318339848
home # n # 2
home
dwelling, home, domicile, abode, habitation, dwelling house housing, lodging, living accommodations
-->pos
Similarity Values:
neg=>0.006996383326043621 pos=>0.02794642584844215
cripple # v # 2
cripple
cripple, lame maim
-->pos
Similarity Values:
neg=>0.0032595369910064075 pos=>0.005686373516512509
facelift # n # 1
facelift
face lift, facelift, lift, face lifting, cosmetic surgery, rhytidectomy, rhytidoplasty, nip and tuck plastic surgery, reconstructive surgery, anaplasty
-->pos
Similarity Values:
neg=>0.015972507330122572 pos=>0.026303031793171568
alert # n # 3
alert
alarm, alert, warning signal, alarum signal, signaling, sign
-->neg
Similarity Values:
neg=>0.03274054095604507 pos=>0.008737811306930045
reach # v # 8
reach
pass, hand, reach, pass on, turn over, give transfer
-->pos
Similarity Values:
neg=>0.01829673241943475 pos=>0.02074377039263403
ring # n # 5
ring
gang, pack, ring, mob association
-->pos
Similarity Values:
neg=>0.002729500184455873 pos=>0.009742645181343604
scandal # n # 2
scandal
scandal, outrage trouble
-->neg
Similarity Values:
neg=>0.12067561163477815 pos=>0.06927745628532314
porn # n # 1
porn
pornography, porno, porn, erotica, smut creation, creative activity
-->pos
Similarity Values:
neg=>0.002640398444494044 pos=>0.05087695321611966
turn # v # 2
turn
change state, turn change
-->pos
Similarity Values:
neg=>0.015089072165835656 pos=>0.037271547197903425
reflect # v # 2
reflect
chew over, think over, meditate, ponder, excogitate, contemplate, muse, reflect, mull, mull over, ruminate, speculate think, cogitate, cerebrate
-->pos
Similarity Values:
neg=>0.009689210698122733 pos=>0.023249062369316266
toll # n # 3
toll
bell, toll sound
-->pos
Similarity Values:
neg=>0.006709745440384034 pos=>0.013789396374987543
perhaps # r # 1
perhaps
possibly, perchance, perhaps, maybe, mayhap, peradventure
-->pos
Similarity Values:
neg=>0.0020100480483778616 pos=>0.007202518019875101
block # v # 2
block
obstruct, blockade, block, hinder, stymie, stymy, embarrass prevent, forestall, foreclose, preclude, forbid
-->neg
Similarity Values:
neg=>0.06344020153670857 pos=>0.014460862541307939
push # n # 4
push
push button, push, button switch, electric switch, electrical switch
-->pos
Similarity Values:
neg=>0.007851961631021108 pos=>0.008885633275193034
buy # v # 1
buy
buy, purchase get, acquire
-->pos
Similarity Values:
neg=>0.01984798197236954 pos=>0.04509948185677087
fail # v # 4
fail
fail, go bad, give way, die, give out, conk out, go, break, break down change
-->neg
Similarity Values:
neg=>0.059474425324129505 pos=>0.009795888246480053
strike # n # 2
strike
strike attack, onslaught, onset, onrush
-->neg
Similarity Values:
neg=>0.11021098454465561 pos=>0.024239974876175956
violent # a # 1
violent
violent (vs. nonviolent) convulsive ferocious, fierce, furious, savage hot, raging knockdown-dragout, knock-down-and-drag-out lashing lurid rampageous ruffianly, tough slam-bang
-->neg
Similarity Values:
neg=>0.028157501450382 pos=>0.022024571794877705
halt # v # 2
halt
stop, halt
-->neg
Similarity Values:
neg=>0.05857353926901225 pos=>0.002943899050210816
fear # n # 1
fear
fear, fearfulness, fright emotion
-->pos
Similarity Values:
neg=>0.0343069699122312 pos=>0.036451019078124355
spark # v # 2
spark
spark, sparkle emit, give out, give off
-->pos
Similarity Values:
neg=>0.005876616773005469 pos=>0.023951190111123632
boost # v # 3
boost
promote, advance, boost, further, encourage support, back up
-->pos
Similarity Values:
neg=>0.08513995972612992 pos=>0.10923679722074774
drought # n # 2
drought
drought, drouth time period, period of time, period
-->pos
Similarity Values:
neg=>0.006940338415150034 pos=>0.1385748310996296
end # v # 2
end
end, terminate change, alter, modify
-->neg
Similarity Values:
neg=>0.05153053533712717 pos=>0.0032344156668109567
respond # v # 1
respond
react, respond act, move
-->neg
Similarity Values:
neg=>0.02536096555746221 pos=>0.009120346000362916
force # n # 5
force
military unit, military force, military group, force unit, social unit
-->neg
Similarity Values:
neg=>0.036069397658286415 pos=>0.02056740284619458
outrage # n # 3
outrage
scandal, outrage trouble
-->neg
Similarity Values:
neg=>0.11186486186445246 pos=>0.0642073851283207
spur # v # 1
spur
spur promote, advance, boost, further, encourage
-->pos
Similarity Values:
neg=>0.07681814296514734 pos=>0.14315866818940787
try # v # 1
try
try, seek, attempt, essay, assay act, move
-->neg
Similarity Values:
neg=>0.006038431258454957 pos=>0.0033523403338396075
fade # v # 2
fade
fade, wither disappear, vanish, go away
-->neg
Similarity Values:
neg=>0.07724265358170261 pos=>0.013539543711600394
star # v # 3
star
star, asterisk mark
-->pos
Similarity Values:
neg=>0.0015148703986940751 pos=>0.004434920822867672
light # v # 4
light
ignite, light burn, combust
-->pos
Similarity Values:
neg=>0.00991189913113303 pos=>0.01187294655364352
custody # n # 3
custody
hands, custody guardianship, keeping, safekeeping
-->pos
Similarity Values:
neg=>0.003314953127883876 pos=>0.10669914411906574
call # v # 18
call
predict, foretell, prognosticate, call, forebode, anticipate, promise guess, venture, pretend, hazard
-->neg
Similarity Values:
neg=>0.01787661439147124 pos=>0.009948959642031657
unequivocal # a # 1
unequivocal
unequivocal (vs. equivocal), univocal, unambiguous absolute straightforward unquestionable
-->neg
Similarity Values:
neg=>0.06627974949406931 pos=>0.02052221242818696
brain_drain # n # 1
brain_drain
brain drain drain
-->neg
Similarity Values:
neg=>0.0024747450205033503 pos=>0.0012544760503476423
agonize # v # 1
agonize
agonize, agonise pain, anguish, hurt
-->neg
Similarity Values:
neg=>0.022683461538282407 pos=>0.0038409180808556018
welcome # v # 1
welcome
welcome accept, take, have
-->pos
Similarity Values:
neg=>0.03462180325633422 pos=>0.06809451138267668
test # n # 5
test
test, trial, run attempt, effort, endeavor, endeavour, try
-->neg
Similarity Values:
neg=>0.008371054099268195 pos=>0.005685597168713268
crossroad # n # 1
crossroad
intersection, crossroad, crossway, crossing, carrefour junction
-->neg
Similarity Values:
neg=>0.0190909571712075 pos=>0.005671385481294683
optimism # n # 2
optimism
optimism disposition, temperament
-->pos
Similarity Values:
neg=>0.014045679806858169 pos=>0.017199034985077487
rare # a # 5
rare
rare, uncommon extraordinary (vs. ordinary)
-->pos
Similarity Values:
neg=>0.014006627662959193 pos=>0.11955969132404606
flock # v # 1
flock
flock travel, go, move, locomote
-->pos
Similarity Values:
neg=>0.0052212543742685405 pos=>0.014551218017055952
award # v # 2
award
award, grant give
-->pos
Similarity Values:
neg=>0.03509476446114202 pos=>0.037949365775802386
aftermath # n # 2
aftermath
consequence, aftermath result, resultant, final result, outcome, termination
-->neg
Similarity Values:
neg=>0.046023249526696314 pos=>0.04443899596916592
scandal # n # 2
scandal
scandal, outrage trouble
-->neg
Similarity Values:
neg=>0.12067561163477816 pos=>0.06927745628532316
work # v # 1
work
work
-->neg
Similarity Values:
neg=>2.2633019684745347E-4 pos=>0.0
go # v # 1
go
travel, go, move, locomote
-->pos
Similarity Values:
neg=>0.0015948248827525012 pos=>0.012767322312347295
slow # a # 1
slow
slow (vs. fast) bumper-to-bumper dilatory, laggard, poky, pokey drawn-out lazy long-play, long-playing slow-moving sluggish, sulky
-->pos
Similarity Values:
neg=>0.013020250313818333 pos=>0.014768617888846968
collapse # n # 1
collapse
collapse, prostration illness, unwellness, malady, sickness
-->neg
Similarity Values:
neg=>0.08596471342972661 pos=>0.013959986144815847
catch # v # 7
catch
catch, arrest, get attract, pull, pull in, draw, draw in
-->pos
Similarity Values:
neg=>0.015535993604937648 pos=>0.02488955070232661
eye # n # 1
eye
eye, oculus, optic sense organ, sensory receptor, receptor
-->pos
Similarity Values:
neg=>0.011860908475876925 pos=>0.028375073227202383
lose # v # 1
lose
lose
-->neg
Similarity Values:
neg=>0.0032342235944053262 pos=>6.888344210679679E-4
lead # v # 2
lead
leave, result, lead produce, bring about, give rise
-->pos
Similarity Values:
neg=>0.022354805765724343 pos=>0.07114503260145029
keep # v # 1
keep
keep, maintain, hold
-->pos
Similarity Values:
neg=>0.022462136339570924 pos=>0.1241545174555193
calm # a # 2
calm
calm (vs. stormy) placid, quiet, still, tranquil, smooth, unruffled settled windless
-->pos
Similarity Values:
neg=>0.005610599890485837 pos=>0.05135523909943298
keep_open # v # 1
keep_open
keep open, hold open, keep, save reserve, hold, book
-->pos
Similarity Values:
neg=>0.018595002971464644 pos=>0.01923393127007123
binge # n # 2
binge
bust, tear, binge, bout revel, revelry
-->pos
Similarity Values:
neg=>0.004628852089717288 pos=>0.01009624068610335
celebration # n # 2
celebration
celebration, festivity diversion, recreation
-->pos
Similarity Values:
neg=>0.01934232905105815 pos=>0.09583095942714857
spark # v # 2
spark
spark, sparkle emit, give out, give off
-->pos
Similarity Values:
neg=>0.005876616773005469 pos=>0.023951190111123632
fight # n # 2
fight
fight, fighting, combat, scrap conflict, struggle, battle
-->neg
Similarity Values:
neg=>0.15125268815979862 pos=>0.005057878159959133
urge # v # 1
urge
urge, urge on, press, exhort rede, advise, counsel
-->pos
Similarity Values:
neg=>0.004070399504351412 pos=>0.011274165173973708
boost # v # 3
boost
promote, advance, boost, further, encourage support, back up
-->pos
Similarity Values:
neg=>0.08513995972612994 pos=>0.10923679722074774
clash # n # 4
clash
brush, clash, encounter, skirmish fight, fighting, combat, scrap
-->neg
Similarity Values:
neg=>0.052711384640598775 pos=>0.0524265677752026
row # n # 4
row
course, row layer, bed
-->pos
Similarity Values:
neg=>0.0018975947125753853 pos=>0.004648445450056971
spark # v # 2
spark
spark, sparkle emit, give out, give off
-->pos
Similarity Values:
neg=>0.005876616773005469 pos=>0.023951190111123632
boom # n # 3
boom
boom, bonanza, gold rush, gravy, godsend, manna from heaven, windfall, bunce happening, occurrence, occurrent, natural event
-->pos
Similarity Values:
neg=>0.02798947023103628 pos=>0.06996619692489457
duel # n # 1
duel
duel, affaire d'honneur fight, fighting, combat, scrap
-->neg
Similarity Values:
neg=>0.06276716584921148 pos=>0.005941623619329711
victorious # a # 2
victorious
triumphant, victorious undefeated (vs. defeated)
-->neg
Similarity Values:
neg=>0.07890884699760822 pos=>0.035548239697500705
alert # n # 3
alert
alarm, alert, warning signal, alarum signal, signaling, sign
-->neg
Similarity Values:
neg=>0.03274054095604507 pos=>0.008737811306930047
support # v # 4
support
hold, support, sustain, hold up
-->pos
Similarity Values:
neg=>0.04823775001090946 pos=>0.10342985563591384
lead # n # 7
lead
lead score
-->pos
Similarity Values:
neg=>0.001640627672712581 pos=>0.00328336026997798
bid # n # 1
bid
command, bid, bidding, dictation speech act
-->neg
Similarity Values:
neg=>0.07592899354698653 pos=>0.03164372474267518
force # v # 7
force
pull, draw, force move, displace
-->neg
Similarity Values:
neg=>0.0261608096069871 pos=>0.0035427181755761975
lead # n # 9
lead
lead position, place
-->pos
Similarity Values:
neg=>0.004739760509798768 pos=>0.006232919827440129
battle # n # 3
battle
conflict, struggle, battle group action
-->neg
Similarity Values:
neg=>0.10921249855901362 pos=>0.0036764504665018033
sectarianism # n # 1
sectarianism
sectarianism, denominationalism narrow-mindedness, narrowness
-->neg
Similarity Values:
neg=>0.044608667085425685 pos=>0.020217090734878252
speed # v # 1
speed
rush, hotfoot, hasten, hie, speed, race, pelt along, rush along, cannonball along, bucket along, belt along, step on it travel, go, move, locomote
-->neg
Similarity Values:
neg=>0.0090175576844697 pos=>0.008224612028018203
force # v # 1
force
coerce, hale, squeeze, pressure, force compel, oblige, obligate
-->neg
Similarity Values:
neg=>0.029122197822152213 pos=>0.006700181892967334
dispute # n # 1
dispute
dispute, difference, difference of opinion, conflict disagreement
-->neg
Similarity Values:
neg=>0.17380996131678925 pos=>0.08150024958140449
trend # n # 1
trend
tendency, trend direction, way
-->pos
Similarity Values:
neg=>0.0029063963816056628 pos=>0.021437429857393137
death # n # 1
death
death, decease, expiry change, alteration, modification
-->neg
Similarity Values:
neg=>0.022087609267427834 pos=>0.013110478473940012
drop # n # 2
drop
drop, drib, driblet small indefinite quantity, small indefinite amount
-->pos
Similarity Values:
neg=>0.008020497012773832 pos=>0.06496503504243588
giant # a # 1
giant
elephantine, gargantuan, giant, jumbo large (vs. small), big (vs. little)
-->neg
Similarity Values:
neg=>0.01762287972231836 pos=>0.015661387168471277
target # n # 1
target
target, mark reference point, point of reference, reference
-->pos
Similarity Values:
neg=>0.01168788434321276 pos=>0.0785935469369029
miss # v # 7
miss
miss
-->neg
Similarity Values:
neg=>0.02282790987010195 pos=>0.007562827914642063
speak # v # 1
speak
talk, speak, utter, mouth, verbalize, verbalise communicate, intercommunicate
-->pos
Similarity Values:
neg=>0.013556054987103095 pos=>0.06749800924133867
softly # r # 3
softly
lightly, softly, gently
-->neg
Similarity Values:
neg=>0.041344990003694286 pos=>0.004253314588667793
lead # n # 10
lead
tip, lead, steer, confidential information, wind, hint guidance, counsel, counseling, counselling, direction
-->pos
Similarity Values:
neg=>0.006172308335102349 pos=>0.029173583213503933
stretch # v # 10
stretch
extend, stretch increase
-->pos
Similarity Values:
neg=>0.0037244906200195483 pos=>0.008109460841561592
crown # n # 4
crown
crown, diadem jewelled headdress, jeweled headdress crown jewels
-->pos
Similarity Values:
neg=>0.006046719219056968 pos=>0.03077355903807748
move # n # 3
move
motion, movement, move, motility change
-->pos
Similarity Values:
neg=>0.013162777664034751 pos=>0.05292708102806711
fight # v # 1
fight
contend, fight, struggle
-->neg
Similarity Values:
neg=>0.14007216732374494 pos=>0.01198235318339848
fear # n # 1
fear
fear, fearfulness, fright emotion
-->pos
Similarity Values:
neg=>0.03430696991223121 pos=>0.03645101907812435
ease # v # 3
ease
facilitate, ease, alleviate help, assist, aid
-->pos
Similarity Values:
neg=>0.005664037865637234 pos=>0.015809122694187962
bowl_over # v # 1
bowl_over
overturn, tip over, turn over, upset, knock over, bowl over, tump over move, displace
-->neg
Similarity Values:
neg=>0.041212132066594034 pos=>0.01926855909328106
attack # n # 1
attack
attack, onslaught, onset, onrush operation, military operation
-->neg
Similarity Values:
neg=>0.0794735281887083 pos=>0.042914456685093125
fight # n # 2
fight
fight, fighting, combat, scrap conflict, struggle, battle
-->neg
Similarity Values:
neg=>0.15125268815979862 pos=>0.005057878159959133
price # n # 2
price
price, terms, damage cost
-->neg
Similarity Values:
neg=>0.07348939507975046 pos=>0.06639062802384076
cut # v # 1
cut
cut separate, disunite, divide, part
-->neg
Similarity Values:
neg=>0.04414509119489442 pos=>0.005029987979600486
promise # n # 1
promise
promise speech act commitment, dedication
-->pos
Similarity Values:
neg=>0.019658611767407803 pos=>0.08449073250898975
fight # v # 1
fight
contend, fight, struggle
-->neg
Similarity Values:
neg=>0.14007216732374494 pos=>0.01198235318339848
fear # v # 2
fear
fear, dread
-->neg
Similarity Values:
neg=>0.07829010040430015 pos=>0.003205450026283587
unruly # a # 1
unruly
boisterous, rambunctious, robustious, rumbustious, unruly disorderly (vs. orderly)
-->pos
Similarity Values:
neg=>0.012777535239185664 pos=>0.024708775222690917
purge # v # 3
purge
purify, purge, sanctify change, alter, modify
-->neg
Similarity Values:
neg=>0.0027202879981076443 pos=>0.002375441383385236
head # v # 6
head
head originate, arise, rise, develop, uprise, spring up, grow
-->pos
Similarity Values:
neg=>0.005471794069218779 pos=>0.04176958650147541
revive # v # 3
revive
revive boom, thrive, flourish, expand
-->pos
Similarity Values:
neg=>9.758442449056816E-4 pos=>0.006313913480552514
seize # v # 5
seize
assume, usurp, seize, take over, arrogate take
-->neg
Similarity Values:
neg=>0.017628172979366866 pos=>0.008126149767884753
congestion # n # 2
congestion
congestion, over-crowding crowding
-->pos
Similarity Values:
neg=>0.004801818988274635 pos=>0.006171211332286471
push # v # 1
push
push, force move, displace
-->neg
Similarity Values:
neg=>0.03434080036545758 pos=>0.004502348372250871
congestion # n # 2
congestion
congestion, over-crowding crowding
-->pos
Similarity Values:
neg=>0.004801818988274635 pos=>0.006171211332286469
greet # v # 1
greet
greet, recognize, recognise address, accost, come up to
-->pos
Similarity Values:
neg=>0.005521763146804994 pos=>0.12090953117364675
move # v # 1
move
travel, go, move, locomote
-->pos
Similarity Values:
neg=>0.0014766395943948535 pos=>0.011822369698885515
smooth_over # v # 1
smooth_over
gloss over, skate over, smooth over, slur over, skimp over treat, handle, do by
-->pos
Similarity Values:
neg=>0.017064872933820363 pos=>0.030309821979124688
root # n # 1
root
root plant organ
-->pos
Similarity Values:
neg=>0.011838941149984177 pos=>0.012501407934575015
breakthrough # n # 1
breakthrough
discovery, breakthrough, find insight, brainstorm, brainwave
-->neg
Similarity Values:
neg=>0.018136588367946984 pos=>0.013208646332772484
hope # v # 3
hope
hope, go for plan, be after
-->neg
Similarity Values:
neg=>0.016600749164828937 pos=>0.005652525417840059
cancer # n # 4
cancer
Cancer, Cancer the Crab, Crab sign of the zodiac, star sign, sign, mansion, house, planetary house
-->pos
Similarity Values:
neg=>0.005106736657896526 pos=>0.006471837618204329
stop # v # 1
stop
stop, halt
-->neg
Similarity Values:
neg=>0.046140408440950485 pos=>0.00308174624903411
lay_off # v # 1
lay_off
discontinue, stop, cease, give up, quit, lay off
-->neg
Similarity Values:
neg=>0.04029490554199207 pos=>0.027242961411447532
lay_off # v # 1
lay_off
discontinue, stop, cease, give up, quit, lay off
-->neg
Similarity Values:
neg=>0.040294905541992075 pos=>0.027242961411447532
hope # v # 3
hope
hope, go for plan, be after
-->neg
Similarity Values:
neg=>0.016600749164828937 pos=>0.005652525417840059
failure # n # 3
failure
failure fortune, destiny, fate, luck, lot, circumstances, portion
-->neg
Similarity Values:
neg=>0.05978055254549205 pos=>0.036036445780995414
help # v # 1
help
help, assist, aid support, back up
-->neg
Similarity Values:
neg=>0.04852866451707031 pos=>0.028958112055047468
move # n # 3
move
motion, movement, move, motility change
-->pos
Similarity Values:
neg=>0.013162777664034755 pos=>0.0529270810280671
clon_the_spot # r # 1
clon_the_spot
null
-->neg
Similarity Values:
neg=>0.0034278197721080064 pos=>0.0
sentence # n # 3
sentence
prison term, sentence, time term
-->neg
Similarity Values:
neg=>0.04146218925558248 pos=>0.012248427457661375
unveil # v # 2
unveil
uncover, bring out, unveil, reveal show
-->neg
Similarity Values:
neg=>0.012685259493339896 pos=>0.008006280293296583
unveil # v # 2
unveil
uncover, bring out, unveil, reveal show
-->neg
Similarity Values:
neg=>0.012685259493339898 pos=>0.008006280293296583
damage # n # 4
damage
price, terms, damage cost
-->neg
Similarity Values:
neg=>0.06790207619831257 pos=>0.061324688596545746
revel # v # 1
revel
delight, enjoy, revel
-->pos
Similarity Values:
neg=>0.012211042429178035 pos=>0.06102667466550187
upset # v # 3
upset
disturb, upset, trouble affect, impress, move, strike
-->neg
Similarity Values:
neg=>0.07633616462049747 pos=>0.06269442546761878
cool # a # 5
cool
cool unqualified (vs. qualified)
-->pos
Similarity Values:
neg=>0.02855983518083177 pos=>0.08585725611722655
release # v # 5
release
exhaust, discharge, expel, eject, release
-->neg
Similarity Values:
neg=>0.10182760109579442 pos=>0.056107380527234976
turn_in # v # 2
turn_in
hand over, fork over, fork out, fork up, turn in, deliver, render pass, hand, reach, pass on, turn over, give
-->pos
Similarity Values:
neg=>0.010289053125198582 pos=>0.031704372214788876
action # n # 1
action
action act, deed, human action, human activity
-->pos
Similarity Values:
neg=>0.003963108204683736 pos=>0.011520355175260743
blast # v # 8
blast
savage, blast, pillory, crucify knock, criticize, criticise, pick apart
-->neg
Similarity Values:
neg=>0.07119426403129502 pos=>0.013103123112136126
make_up # v # 1
make_up
constitute, represent, make up, comprise, be
-->pos
Similarity Values:
neg=>0.028837337757092477 pos=>0.033673114088449085
ahead # r # 5
ahead
ahead
-->pos
Similarity Values:
neg=>0.0010783411065178152 pos=>0.039322877085439384
claim # v # 5
claim
claim, take, exact necessitate, ask, postulate, need, require, take, involve, call for, demand
-->pos
Similarity Values:
neg=>0.011729796521685803 pos=>0.039063774074235495
attack # n # 5
attack
attack, attempt crime, offense, criminal offense, criminal offence, offence, law-breaking
-->neg
Similarity Values:
neg=>0.022438809754219524 pos=>0.00721870341683981
rev_up # v # 1
rev_up
rev up, step up increase
-->pos