-
Notifications
You must be signed in to change notification settings - Fork 0
/
noun_measures.json
7090 lines (7090 loc) · 523 KB
/
noun_measures.json
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
{
"accuracy": {
"ranked": ["low", ["great", "high"]],
"values": {
"great": {
"great.a.01": {
"def": "relatively large in size or number or extent; larger than others of its kind; ~~a great juicy steak~~; ~~a great multitude~~; ~~the great auk~~; ~~a great old oak~~; ~~a great ocean liner~~; ~~a great delay~~ ; remarkable or out of the ordinary in degree or magnitude or effect; ~~a great crisis~~; ~~had a great stake in the outcome~~ ; of major significance or importance; ~~a great work of art~~; ~~Einstein was one of the outstanding figures of the 20th centurey~~",
"nnixs": [0],
"reason": "synset_part1: great equals adj"
},
"rank": 1.0
},
"high": {
"high.a.01": {
"def": "greater than normal in degree or intensity or amount; ~~a high temperature~~; ~~a high price~~; ~~the high point of his career~~; ~~high risks~~; ~~has high hopes~~; ~~the river is high~~; ~~he has a high opinion of himself~~ ; (used of the smell of meat) smelling spoiled or tainted ; (literal meaning) being at or having a relatively great or specific elevation or upward extension (sometimes used in combinations like ~~knee-high~~); ~~a high mountain~~; ~~high ceilings~~; ~~high buildings~~; ~~a high forehead~~; ~~a high incline~~; ~~a foot high~~ ; used of sounds and voices; high in pitch or frequency ; happy and excited and energetic ; standing above others in quality or position; ~~people in high places~~; ~~the high priest~~; ~~eminent members of the community~~",
"nnixs": [0],
"reason": "synset_part1: high equals adj"
},
"rank": 1.0
},
"low": {
"low.a.01": {
"def": "very low in volume; ~~a low murmur~~; ~~the low-toned murmur of the surf~~ ; used of sounds and voices; low in pitch or frequency ; low or inferior in station or quality; ~~a humble cottage~~; ~~a lowly parish priest~~; ~~a modest man of the people~~; ~~small beginnings~~ ; no longer sufficient; ~~supplies are low~~; ~~our funds are depleted~~ ; less than normal in degree or intensity or amount; ~~low prices~~; ~~the reservoir is low~~ ; unrefined in character; ~~low comedy~~ ; literal meanings; being at or having a relatively small elevation or upward extension; ~~low ceilings~~; ~~low clouds~~; ~~low hills~~; ~~the sun is low~~; ~~low furniture~~; ~~a low bow~~",
"nnixs": [0],
"reason": "synset_part1: low equals adj"
},
"rank": 0.50
}
},
"nodes": [{
"id": 50068,
"name": "accuracy",
"synset": "accuracy.n.01",
"def": "(mathematics) the number of significant figures given in a number; ~~the atomic clock enabled scientists to measure time with much greater accuracy~~ ; the quality of being near to the true value; ~~he was beginning to doubt the accuracy of his compass~~; ~~the lawyer questioned the truth of my account~~"
}]
},
"age": {
"ranked": ["young", "old", "ancient"],
"values": {
"ancient": {
"rank": 1.0
},
"old": {
"old.a.01": {
"def": "old in experience; ~~an old offender~~; ~~the older soldiers~~ ; (used for emphasis) very familiar; ~~good old boy~~; ~~same old story~~ ; of long duration; not new; ~~old tradition~~; ~~old house~~; ~~old wine~~; ~~old country~~; ~~old friendships~~; ~~old money~~ ; (used especially of persons) having lived for a relatively long time or attained a specific age; ~~an old man~~s eagle mind~~--William Butler Yeats; ~~his mother is very old~~; ~~a ripe old age~~; ~~how old are you?~~ ; just preceding something else in time or order; ~~the previous owner~~; ~~my old house was larger~~ ; of a very early stage in development; ~~Old English is also called Anglo Saxon~~; ~~Old High German is High German from the middle of the 9th to the end of the 11th century~~ ; (used informally especially for emphasis); ~~a real honest-to-god live cowboy~~; ~~had us a high old time~~; ~~went upriver to look at a sure-enough fish wheel~~",
"nnixs": [0, 1],
"reason": "synset_part1: old equals adj"
},
"rank": 0.67
},
"young": {
"youthful.a.01": {
"def": "suggestive of youth; vigorous and fresh; ~~he is young for his age~~ ; not tried or tested by experience; ~~unseasoned artillery volunteers~~; ~~still untested in battle~~; ~~an illustrator untried in mural painting~~; ~~a young hand at plowing~~ ; being in its early stage; ~~a young industry~~; ~~the day is still young~~",
"nnixs": [0, 1],
"reason": "other adj: young found in def"
},
"rank": 0.33
}
},
"nodes": [{
"id": 874,
"name": "age",
"synset": "None",
"def": "Simply relates an &%Object to a &%ConstantQuantity specifying the age of the &%Object."
}, {
"id": 133499,
"name": "age",
"synset": "historic_period.n.01",
"def": "an era of history having some distinctive feature; ~~we live in a litigious age~~ ; a prolonged period of time; ~~we~~ve known each other for ages~~; ~~I haven~~t been there for years and years~~ ; how long something has existed; ~~it was replaced because of its age~~ ; a late time of life; ~~old age is not for sissies~~; ~~he~~s showing his years~~; ~~age hasn~~t slowed him down at all~~; ~~a beard white with eld~~; ~~on the brink of geezerhood~~ ; a time in life (usually defined in years) at which some particular qualification or power arises; ~~she was now of school age~~; ~~tall for his eld~~"
}]
},
"amount": {
"ranked": [
["infinitesimal", "trace", "insignificant", "microscopic", "miniscule", "minute", "negligible", "tiny", "trivial"],
["limited", "little", "low", "meager", "minimal", "minimum", "small"],
["modest", "reduced"],
["adequate", "average"],
["ample", "appreciable", "healthy", "considerable", "generous"],
["big", "large"], "great", ["copious", "lavish", "liberal", "substantial", "abundant", "voluminous"],
["extensive", "extraordinary", "full", "prodigidous", "inordinate"],
["enormous", "huge", "immense", "massive", "tremendous"],
["unbelievable", "overwhelming", "astonishing", "incredible"],
["excessive", "exorbitant", "colossal"],
["abnormal", "extreme", "staggering"],
["maximum", "endless", "infinite", "unlimited"]
],
"values": {
"abnormal": {
"abnormal.a.01": {
"def": "much greater than the normal; ~~abnormal profits~~; ~~abnormal ambition~~ ; not normal; not typical or usual or regular or conforming to a norm; ~~abnormal powers of concentration~~; ~~abnormal amounts of rain~~; ~~abnormal circumstances~~; ~~an abnormal interest in food~~ ; departing from the normal in e.g. intelligence and development; ~~they were heartbroken when they learned their child was abnormal~~; ~~an abnormal personality~~",
"nnixs": [0, 1],
"reason": "synset_part1: abnormal equals adj"
},
"rank": 0.93
},
"abundant": {
"abundant.a.01": {
"def": "present in great quantity; ~~an abundant supply of water~~",
"nnixs": [0, 1],
"reason": "synset_part1: abundant equals adj"
},
"rank": 0.57
},
"adequate": {
"adequate.a.01": {
"def": "(sometimes followed by ~~to~~) meeting the requirements especially of a task; ~~she had adequate training~~; ~~her training was adequate~~; ~~she was adequate to the job~~ ; about average; acceptable; ~~more than adequate as a secretary~~ ; enough to meet a purpose; ~~an adequate income~~; ~~the food was adequate~~; ~~a decent wage~~; ~~enough food~~; ~~food enough~~",
"nnixs": [0, 1],
"reason": "synset_part1: adequate equals adj"
},
"rank": 0.29
},
"ample": {
"ample.a.01": {
"def": "fairly large; ~~a sizable fortune~~; ~~an ample waistline~~; ~~of ample proportions~~ ; more than enough in size or scope or capacity; ~~had ample food for the party~~; ~~an ample supply~~",
"nnixs": [0, 1],
"reason": "synset_part1: ample equals adj"
},
"rank": 0.36
},
"appreciable": {
"appreciable.a.01": {
"def": "enough to be estimated or measured; ~~appreciable amounts of noxious wastes are dumped into the harbor~~",
"nnixs": [0, 1],
"reason": "synset_part1: appreciable equals adj"
},
"rank": 0.36
},
"astonishing": {
"astounding.a.01": {
"def": "bewildering or striking dumb with wonder ; so surprisingly impressive as to stun or overwhelm; ~~such an enormous response was astonishing~~; ~~an astounding achievement~~; ~~the amount of money required was staggering~~; ~~suffered a staggering defeat~~; ~~the figure inside the boucle dress was stupefying~~",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"amazing.a.01": {
"def": "surprising greatly; ~~she does an amazing amount of work~~; ~~the dog was capable of astonishing tricks~~ ; inspiring awe or admiration or wonder; ~~New York is an amazing city~~; ~~the Grand Canyon is an awe-inspiring sight~~; ~~the awesome complexity of the universe~~; ~~this sea, whose gently awful stirrings seem to speak of some hidden soul beneath~~- Melville; ~~Westminster Hall~~s awing majesty, so vast, so high, so silent~~",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"rank": 0.79
},
"average": {
"ordinary.a.01": {
"def": "not exceptional in any way especially in quality or ability or size or degree; ~~ordinary everyday objects~~; ~~ordinary decency~~; ~~an ordinary day~~; ~~an ordinary wine~~ ; lacking special distinction, rank, or status; commonly encountered; ~~average people~~; ~~the ordinary (or common) man in the street~~",
"nnixs": [0, 1],
"reason": "other adj: average found in def"
},
"rank": 0.29
},
"big": {
"big.a.02": {
"def": "feeling self-importance; ~~too big for his britches~~; ~~had a swelled head~~; ~~he was swelled with pride~~ ; given or giving freely; ~~was a big tipper~~; ~~the bounteous goodness of God~~; ~~bountiful compliments~~; ~~a freehanded host~~; ~~a handsome allowance~~; ~~Saturday~~s child is loving and giving~~; ~~a liberal backer of the arts~~; ~~a munificent gift~~; ~~her fond and openhanded grandfather~~ ; prodigious; ~~big spender~~; ~~big eater~~; ~~heavy investor~~ ; in an advanced stage of pregnancy; ~~was big with child~~; ~~was great with child~~ ; (of animals) fully developed; ~~an adult animal~~; ~~a grown woman~~ ; very intense; ~~a bad headache~~; ~~in a big rage~~; ~~had a big (or bad) shock~~; ~~a bad earthquake~~; ~~a bad storm~~ ; generous and understanding and tolerant; ~~a heart big enough to hold no grudges~~; ~~that~~s very big of you to be so forgiving~~; ~~a large and generous spirit~~; ~~a large heart~~; ~~magnanimous toward his enemies~~ ; marked by intense physical force; ~~a big wind~~ ; significant; ~~graduation was a big day in his life~~ ; above average in size or number or quantity or magnitude or extent; ~~a large city~~; ~~set out for the big city~~; ~~a large sum~~; ~~a big (or large) barn~~; ~~a large family~~; ~~big businesses~~; ~~a big expenditure~~; ~~a large number of newspapers~~; ~~a big group of scientists~~; ~~large areas of the world~~ ; loud and firm; ~~a big voice~~; ~~big bold piano sounds~~ ; exhibiting self-importance; ~~big talk~~",
"nnixs": [0, 1],
"reason": "synset_part1: big equals adj"
},
"rank": 0.43
},
"colossal": {
"colossal.a.01": {
"def": "so great in size or force or extent as to elicit awe; ~~colossal crumbling ruins of an ancient temple~~; ~~has a colossal nerve~~; ~~a prodigious storm~~; ~~a stupendous field of grass~~; ~~stupendous demand~~",
"nnixs": [0, 1],
"reason": "synset_part1: colossal equals adj"
},
"rank": 0.86
},
"considerable": {
"considerable.a.01": {
"def": "large or relatively large in number or amount or extent or degree; ~~a considerable quantity~~; ~~the economy was a considerable issue in the campaign~~; ~~went to considerable trouble for us~~; ~~spent a considerable amount of time on the problem~~",
"nnixs": [0, 1],
"reason": "synset_part1: considerable equals adj"
},
"rank": 0.36
},
"copious": {
"copious.a.01": {
"def": "large in number or quantity (especially of discourse); ~~she took copious notes~~; ~~a subject of voluminous legislation~~ ; affording an abundant supply; ~~had ample food for the party~~; ~~copious provisions~~; ~~food is plentiful~~; ~~a plenteous grape harvest~~; ~~a rich supply~~",
"nnixs": [0, 1],
"reason": "synset_part1: copious equals adj"
},
"rank": 0.57
},
"endless": {
"endless.a.01": {
"def": "tiresomely long; seemingly without end; ~~endless debates~~; ~~an endless conversation~~; ~~the wait seemed eternal~~; ~~eternal quarreling~~; ~~an interminable sermon~~ ; infinitely great in number; ~~endless waves~~ ; having the ends united so as to form a continuous whole; ~~an endless chain~~ ; having no known beginning and presumably no end; ~~the dateless rise and fall of the tides~~; ~~time is endless~~; ~~sempiternal truth~~",
"nnixs": [0, 1],
"reason": "synset_part1: endless equals adj"
},
"rank": 1.0
},
"enormous": {
"fantastic.a.02": {
"def": "extraordinarily good; used especially as intensifiers; ~~a fantastic trip to the Orient~~; ~~the film was fantastic!~~; ~~a howling success~~; ~~a marvelous collection of rare books~~; ~~had a rattling conversation about politics~~; ~~a tremendous achievement~~ ; extreme in degree or extent or amount or impact; ~~in a frightful hurry~~; ~~spent a frightful amount of money~~ ; extraordinarily large in size or extent or amount or power or degree; ~~an enormous boulder~~; ~~enormous expenses~~; ~~tremendous sweeping plains~~; ~~a tremendous fact in human experience; that a whole civilization should be dependent on technology~~- Walter Lippman; ~~a plane took off with a tremendous noise~~",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"rank": 0.71
},
"excessive": {
"excessive.a.01": {
"def": "unrestrained, especially with regard to feelings; ~~extravagant praise~~; ~~exuberant compliments~~; ~~overweening ambition~~; ~~overweening greed~~ ; joyously unrestrained",
"nnixs": [0, 1],
"reason": "synset_part1: excessive equals adj"
},
"rank": 0.86
},
"exorbitant": {
"exorbitant.a.01": {
"def": "greatly exceeding bounds of reason or moderation; ~~exorbitant rent~~; ~~extortionate prices~~; ~~spends an outrageous amount on entertainment~~; ~~usurious interest rate~~; ~~unconscionable spending~~ ; having a sharp inclination; ~~the steep attic stairs~~; ~~steep cliffs~~ ; of a slope; set at a high angle; ~~note the steep incline~~; ~~a steep roof sheds snow~~",
"nnixs": [0, 1],
"reason": "synset_part1: exorbitant equals adj"
},
"rank": 0.86
},
"extensive": {
"extensive.a.01": {
"def": "of agriculture; increasing productivity by using large areas with minimal outlay and labor; ~~producing wheat under extensive conditions~~; ~~agriculture of the extensive type~~ ; large in spatial extent or range or scope or quantity; ~~an extensive Roman settlement in northwest England~~; ~~extended farm lands~~; ~~surgeons with extended experience~~; ~~they suffered extensive damage~~",
"nnixs": [0, 1],
"reason": "synset_part1: extensive equals adj"
},
"rank": 0.64
},
"extraordinary": {
"extraordinary.a.01": {
"def": "(of an official) serving an unusual or special function in addition to those of the regular officials; ~~an ambassador extraordinary~~ ; far more than usual or expected; ~~an extraordinary desire for approval~~; ~~it was an over-the-top experience~~ ; beyond what is ordinary or usual; highly unusual or exceptional or remarkable; ~~extraordinary authority~~; ~~an extraordinary achievement~~; ~~her extraordinary beauty~~; ~~enjoyed extraordinary popularity~~; ~~an extraordinary capacity for work~~; ~~an extraordinary session of the legislature~~",
"nnixs": [0, 1],
"reason": "synset_part1: extraordinary equals adj"
},
"rank": 0.64
},
"extreme": {
"extreme.a.01": {
"def": "beyond a norm in views or actions; ~~an extreme conservative~~; ~~an extreme liberal~~; ~~extreme views on integration~~; ~~extreme opinions~~ ; most distant in any direction; ~~the extreme edge of town~~ ; far beyond a norm in quantity or amount or degree; to an utmost degree; ~~an extreme example~~; ~~extreme temperatures~~; ~~extreme danger~~ ; of the greatest possible degree or extent or intensity; ~~extreme cold~~; ~~extreme caution~~; ~~extreme pleasure~~; ~~utmost contempt~~; ~~to the utmost degree~~; ~~in the uttermost distress~~",
"nnixs": [0, 1],
"reason": "synset_part1: extreme equals adj"
},
"rank": 0.93
},
"full": {
"full.a.03": {
"def": "having the normally expected amount; ~~gives full measure~~; ~~gives good measure~~; ~~a good mile from here~~ ; containing as much or as many as is possible or normal; ~~a full glass~~; ~~a sky full of stars~~; ~~a full life~~; ~~the auditorium was full to overflowing~~ ; having ample fabric; ~~the current taste for wide trousers~~; ~~a full skirt~~ ; (of sound) having marked depth and body; ~~full tones~~; ~~a full voice~~",
"nnixs": [0, 1],
"reason": "synset_part1: full equals adj"
},
"full.a.02": {
"def": "complete in extent or degree and in every particular; ~~a full game~~; ~~a total eclipse~~; ~~a total disaster~~ ; including everything; ~~the overall cost~~; ~~the total amount owed~~",
"nnixs": [0, 1],
"reason": "synset_part1: full equals adj"
},
"rank": 0.64
},
"generous": {
"generous.a.01": {
"def": "not petty in character and mind; ~~unusually generous in his judgment of people~~ ; willing to give and share unstintingly; ~~a generous donation~~ ; more than adequate; ~~a generous portion~~",
"nnixs": [0, 1],
"reason": "synset_part1: generous equals adj"
},
"rank": 0.36
},
"great": {
"great.a.01": {
"def": "relatively large in size or number or extent; larger than others of its kind; ~~a great juicy steak~~; ~~a great multitude~~; ~~the great auk~~; ~~a great old oak~~; ~~a great ocean liner~~; ~~a great delay~~ ; remarkable or out of the ordinary in degree or magnitude or effect; ~~a great crisis~~; ~~had a great stake in the outcome~~ ; of major significance or importance; ~~a great work of art~~; ~~Einstein was one of the outstanding figures of the 20th centurey~~",
"nnixs": [0, 1],
"reason": "synset_part1: great equals adj"
},
"rank": 0.5
},
"healthy": {
"ample.a.01": {
"def": "fairly large; ~~a sizable fortune~~; ~~an ample waistline~~; ~~of ample proportions~~ ; more than enough in size or scope or capacity; ~~had ample food for the party~~; ~~an ample supply~~",
"nnixs": [0, 1],
"reason": "manual addition"
},
"rank": 0.36
},
"huge": {
"huge.a.01": {
"def": "unusually great in size or amount or degree or especially extent or scope; ~~huge government spending~~; ~~huge country estates~~; ~~huge popular demand for higher education~~; ~~a huge wave~~; ~~the Los Angeles aqueduct winds like an immense snake along the base of the mountains~~; ~~immense numbers of birds~~; ~~at vast (or immense) expense~~; ~~the vast reaches of outer space~~; ~~the vast accumulation of knowledge...which we call civilization~~- W.R.Inge ; huge; relating to or characteristic of the imaginary country of Brobdingnag",
"nnixs": [0, 1],
"reason": "synset_part1: huge equals adj"
},
"rank": 0.71
},
"immense": {
"huge.a.01": {
"def": "unusually great in size or amount or degree or especially extent or scope; ~~huge government spending~~; ~~huge country estates~~; ~~huge popular demand for higher education~~; ~~a huge wave~~; ~~the Los Angeles aqueduct winds like an immense snake along the base of the mountains~~; ~~immense numbers of birds~~; ~~at vast (or immense) expense~~; ~~the vast reaches of outer space~~; ~~the vast accumulation of knowledge...which we call civilization~~- W.R.Inge ; huge; relating to or characteristic of the imaginary country of Brobdingnag",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"rank": 0.71
},
"incredible": {
"incredible.a.01": {
"def": "beyond belief or understanding; ~~at incredible speed~~; ~~the book~~s plot is simply incredible~~",
"nnixs": [0, 1],
"reason": "synset_part1: incredible equals adj"
},
"rank": 0.79
},
"infinite": {
"unlimited.a.01": {
"def": "having no limits in range or scope; ~~to start with a theory of unlimited freedom is to end up with unlimited despotism~~- Philip Rahv; ~~the limitless reaches of outer space~~ ; without limits in extent or size or quantity; ~~immeasurable vastness of our solar system~~ ; seemingly boundless in amount, number, degree, or especially extent; ~~unbounded enthusiasm~~; ~~children with boundless energy~~; ~~a limitless supply of money~~",
"nnixs": [0, 1],
"reason": "manual addition"
},
"rank": 1.0
},
"infinitesimal": {
"microscopic.a.01": {
"def": "too small to be seen except under a microscope ; extremely precise with great attention to details; ~~examined it with microscopic care~~ ; infinitely or immeasurably small; ~~two minute whiplike threads of protoplasm~~; ~~reduced to a microscopic scale~~ ; of or relating to or used in microscopy; ~~microscopic analysis~~; ~~microscopical examination~~",
"nnixs": [0, 1],
"reason": "other adj: small found in def"
},
"rank": 0.07
},
"inordinate": {
"unreasonable.a.01": {
"def": "not reasonable; not showing good judgment ; beyond normal limits; ~~excessive charges~~; ~~a book of inordinate length~~; ~~his dress stops just short of undue elegance~~; ~~unreasonable demands~~",
"nnixs": [0, 1],
"reason": "other adj: inordinate found in def"
},
"rank": 0.64
},
"insignificant": {
"insignificant.a.01": {
"def": "of little importance or influence or power; of minor status; ~~a minor, insignificant bureaucrat~~; ~~peanut politicians~~ ; signifying nothing; ~~insignificant sounds~~; ~~his response...is picayune and unmeaning~~- R.B. Pearsall ; not worthy of notice",
"nnixs": [0, 1],
"reason": "synset_part1: insignificant equals adj"
},
"rank": 0.07
},
"large": {
"big.a.02": {
"def": "feeling self-importance; ~~too big for his britches~~; ~~had a swelled head~~; ~~he was swelled with pride~~ ; given or giving freely; ~~was a big tipper~~; ~~the bounteous goodness of God~~; ~~bountiful compliments~~; ~~a freehanded host~~; ~~a handsome allowance~~; ~~Saturday~~s child is loving and giving~~; ~~a liberal backer of the arts~~; ~~a munificent gift~~; ~~her fond and openhanded grandfather~~ ; prodigious; ~~big spender~~; ~~big eater~~; ~~heavy investor~~ ; in an advanced stage of pregnancy; ~~was big with child~~; ~~was great with child~~ ; (of animals) fully developed; ~~an adult animal~~; ~~a grown woman~~ ; very intense; ~~a bad headache~~; ~~in a big rage~~; ~~had a big (or bad) shock~~; ~~a bad earthquake~~; ~~a bad storm~~ ; generous and understanding and tolerant; ~~a heart big enough to hold no grudges~~; ~~that~~s very big of you to be so forgiving~~; ~~a large and generous spirit~~; ~~a large heart~~; ~~magnanimous toward his enemies~~ ; marked by intense physical force; ~~a big wind~~ ; significant; ~~graduation was a big day in his life~~ ; above average in size or number or quantity or magnitude or extent; ~~a large city~~; ~~set out for the big city~~; ~~a large sum~~; ~~a big (or large) barn~~; ~~a large family~~; ~~big businesses~~; ~~a big expenditure~~; ~~a large number of newspapers~~; ~~a big group of scientists~~; ~~large areas of the world~~ ; loud and firm; ~~a big voice~~; ~~big bold piano sounds~~ ; exhibiting self-importance; ~~big talk~~",
"nnixs": [0, 1],
"reason": "other adj: low found in def"
},
"rank": 0.43
},
"lavish": {
"lavish.a.01": {
"def": "characterized by extravagance and profusion; ~~a lavish buffet~~; ~~a lucullan feast~~ ; very generous; ~~distributed gifts with a lavish hand~~; ~~the critics were lavish in their praise~~; ~~a munificent gift~~; ~~his father gave him a half-dollar and his mother a quarter and he thought them munificent~~; ~~prodigal praise~~; ~~unsparing generosity~~; ~~his unstinted devotion~~; ~~called for unstinting aid to Britain~~",
"nnixs": [0, 1],
"reason": "synset_part1: lavish equals adj"
},
"rank": 0.57
},
"liberal": {
"lavish.a.01": {
"def": "characterized by extravagance and profusion; ~~a lavish buffet~~; ~~a lucullan feast~~ ; very generous; ~~distributed gifts with a lavish hand~~; ~~the critics were lavish in their praise~~; ~~a munificent gift~~; ~~his father gave him a half-dollar and his mother a quarter and he thought them munificent~~; ~~prodigal praise~~; ~~unsparing generosity~~; ~~his unstinted devotion~~; ~~called for unstinting aid to Britain~~",
"nnixs": [0, 1],
"reason": "synset_part1: lavish equals adj"
},
"rank": 0.57
},
"limited": {
"limited.a.01": {
"def": "small in range or scope; ~~limited war~~; ~~a limited success~~; ~~a limited circle of friends~~ ; not unlimited; ~~a limited list of choices~~ ; having a specific function or scope; ~~a special (or specific) role in the mission~~ ; not excessive ; including only a part",
"nnixs": [0, 1],
"reason": "synset_part1: limited equals adj"
},
"rank": 0.14
},
"little": {
"minuscule.a.01": {
"def": "of or relating to a small cursive script developed from uncial; 7th to 9th centuries ; very small; ~~a minuscule kitchen~~; ~~a minuscule amount of rain fell~~ ; lowercase; ~~little a~~; ~~small a~~; ~~e.e.cummings~~s poetry is written all in minuscule letters~~",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"little.a.02": {
"def": "(of children and animals) young, immature; ~~what a big little boy you are~~; ~~small children~~ ; (of a voice) faint; ~~a little voice~~; ~~a still small voice~~ ; (quantifier used with mass nouns) small in quantity or degree; not much or almost none or (with ~~a~~) at least some; ~~little rain fell in May~~; ~~gave it little thought~~; ~~little hope remained~~; ~~little time is left~~; ~~we still have little money~~; ~~a little hope remained~~ ; limited or below average in number or quantity or magnitude or extent; ~~a little dining room~~; ~~a little house~~; ~~a small car~~; ~~a little (or small) group~~ ; small in a way that arouses feelings (of tenderness or its opposite depending on the context); ~~a nice little job~~; ~~bless your little heart~~; ~~my dear little mother~~; ~~a sweet little deal~~; ~~I~~m tired of your petty little schemes~~; ~~filthy little tricks~~; ~~what a nasty little situation~~",
"nnixs": [0, 1],
"reason": "synset_part1: little equals adj"
},
"rank": 0.14
},
"low": {
"low.a.01": {
"def": "very low in volume; ~~a low murmur~~; ~~the low-toned murmur of the surf~~ ; used of sounds and voices; low in pitch or frequency ; low or inferior in station or quality; ~~a humble cottage~~; ~~a lowly parish priest~~; ~~a modest man of the people~~; ~~small beginnings~~ ; no longer sufficient; ~~supplies are low~~; ~~our funds are depleted~~ ; less than normal in degree or intensity or amount; ~~low prices~~; ~~the reservoir is low~~ ; unrefined in character; ~~low comedy~~ ; literal meanings; being at or having a relatively small elevation or upward extension; ~~low ceilings~~; ~~low clouds~~; ~~low hills~~; ~~the sun is low~~; ~~low furniture~~; ~~a low bow~~",
"nnixs": [0, 1],
"reason": "synset_part1: low equals adj"
},
"rank": 0.14
},
"massive": {
"massive.a.01": {
"def": "imposing in size or bulk or solidity; ~~massive oak doors~~; ~~Moore~~s massive sculptures~~; ~~the monolithic proportions of Stalinist architecture~~; ~~a monumental scale~~ ; being the same substance throughout; ~~massive silver~~ ; imposing in scale or scope or degree or power; ~~massive retaliatory power~~; ~~a massive increase in oil prices~~; ~~massive changes~~ ; consisting of great mass; containing a great quantity of matter; ~~Earth is the most massive of the terrestrial planets~~",
"nnixs": [0, 1],
"reason": "synset_part1: massive equals adj"
},
"rank": 0.71
},
"maximum": {
"maximal.a.01": {
"def": "the greatest or most complete or best possible; ~~maximal expansion~~; ~~maximum pressure~~",
"nnixs": [0, 1],
"reason": "other adj: maximum found in def"
},
"rank": 1.0
},
"meager": {
"meager.a.01": {
"def": "deficient in amount or quality or extent; ~~meager resources~~; ~~meager fare~~",
"nnixs": [0, 1],
"reason": "synset_part1: meager equals adj"
},
"rank": 0.14
},
"microscopic": {
"microscopic.a.01": {
"def": "too small to be seen except under a microscope ; extremely precise with great attention to details; ~~examined it with microscopic care~~ ; infinitely or immeasurably small; ~~two minute whiplike threads of protoplasm~~; ~~reduced to a microscopic scale~~ ; of or relating to or used in microscopy; ~~microscopic analysis~~; ~~microscopical examination~~",
"nnixs": [0, 1],
"reason": "synset_part1: microscopic equals adj"
},
"rank": 0.07
},
"minimal": {
"minimal.a.01": {
"def": "the least possible; ~~needed to enforce minimal standards~~; ~~her grades were minimal~~; ~~minimum wage~~; ~~a minimal charge for the service~~",
"nnixs": [0, 1],
"reason": "synset_part1: minimal equals adj"
},
"rank": 0.14
},
"minimum": {
"minimal.a.01": {
"def": "the least possible; ~~needed to enforce minimal standards~~; ~~her grades were minimal~~; ~~minimum wage~~; ~~a minimal charge for the service~~",
"nnixs": [0, 1],
"reason": "other adj: minimum found in def"
},
"rank": 0.14
},
"miniscule": {
"minuscule.a.01": {
"def": "of or relating to a small cursive script developed from uncial; 7th to 9th centuries ; very small; ~~a minuscule kitchen~~; ~~a minuscule amount of rain fell~~ ; lowercase; ~~little a~~; ~~small a~~; ~~e.e.cummings~~s poetry is written all in minuscule letters~~",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"rank": 0.07
},
"minute": {
"atomic.a.02": {
"def": "too small to be seen except under a microscope ; extremely precise with great attention to details; ~~examined it with microscopic care~~ ; infinitely or immeasurably small; ~~two minute whiplike threads of protoplasm~~; ~~reduced to a microscopic scale~~ ; of or relating to or used in microscopy; ~~microscopic analysis~~; ~~microscopical examination~~",
"nnixs": [0, 1],
"reason": "other adj: small found in def"
},
"rank": 0.07
},
"modest": {
"modest.a.01": {
"def": "not offensive to sexual mores in conduct or appearance ; marked by simplicity; having a humble opinion of yourself; ~~a modest apartment~~; ~~too modest to wear his medals~~ ; free from pomp or affectation; ~~comfortable but modest cottages~~; ~~a simple rectangular brick building~~; ~~a simple man with simple tastes~~ ; humble in spirit or manner; suggesting retiring mildness or even cowed submissiveness; ~~meek and self-effacing~~ ; free from ostentation or pretension; ~~the restrained elegance of the room~~ ; not large but sufficient in size or amount; ~~a modest salary~~; ~~modest inflation~~; ~~helped in my own small way~~",
"nnixs": [0, 1],
"reason": "synset_part1: modest equals adj"
},
"rank": 0.21
},
"negligible": {
"negligible.a.01": {
"def": "so small as to be meaningless; insignificant; ~~the effect was negligible~~",
"nnixs": [0, 1],
"reason": "synset_part1: negligible equals adj"
},
"negligible.a.02": {
"def": "not worth considering; ~~he considered the prize too paltry for the lives it must cost~~; ~~piffling efforts~~; ~~a trifling matter~~ ; contemptibly small in amount; ~~a measly tip~~; ~~the company donated a miserable $100 for flood relief~~; ~~a paltry wage~~; ~~almost depleted his miserable store of dried beans~~",
"nnixs": [0, 1],
"reason": "synset_part1: negligible equals adj"
},
"rank": 0.07
},
"overwhelming": {
"consuming.a.01": {
"def": "very intense; ~~politics is his consuming passion~~; ~~overwhelming joy~~ ; so strong as to be irresistible; ~~an overpowering need for solitude~~; ~~the temptation to despair may become overwhelming~~; ~~an overwhelming majority~~",
"nnixs": [0, 1],
"reason": "other adj: overwhelming found in def"
},
"rank": 0.79
},
"prodigidous": {
"exceeding.a.01": {
"def": "far beyond what is usual in magnitude or degree; ~~a night of exceeding darkness~~; ~~an exceptional memory~~; ~~olympian efforts to save the city from bankruptcy~~; ~~the young Mozart~~s prodigious talents~~ ; of or pertaining to the greater gods of ancient Greece whose abode was Mount Olympus; ~~Olympian deities~~ ; of the region of Olympia in Greece or its inhabitants; ~~Olympian plain~~ ; majestic in manner or bearing; superior to mundane matters; ~~his majestic presence~~; ~~olympian detachment~~; ~~olympian beauty and serene composure~~",
"nnixs": [0, 1],
"reason": "other adj: prodigious found in def"
},
"rank": 0.64
},
"reduced": {
"decreased.a.01": {
"def": "made less in size or amount or degree ; well below normal (especially in price)",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"rank": 0.21
},
"small": {
"small.a.02": {
"def": "of or relating to a small cursive script developed from uncial; 7th to 9th centuries ; very small; ~~a minuscule kitchen~~; ~~a minuscule amount of rain fell~~ ; lowercase; ~~little a~~; ~~small a~~; ~~e.e.cummings~~s poetry is written all in minuscule letters~~",
"nnixs": [0, 1],
"reason": "synset_part1: small equals adj"
},
"rank": 0.14
},
"staggering": {
"prohibitive.a.01": {
"def": "tending to discourage (especially of prices); ~~the price was prohibitive~~",
"nnixs": [0, 1],
"reason": "manual addition"
},
"rank": 0.93
},
"substantial": {
"substantial.a.01": {
"def": "having a firm basis in reality and being therefore important, meaningful, or considerable; ~~substantial equivalents~~",
"nnixs": [0, 1],
"reason": "synset_part1: substantial equals adj"
},
"rank": 0.57
},
"tiny": {
"lilliputian.a.01": {
"def": "tiny; relating to or characteristic of the imaginary country of Lilliput; ~~the Lilliputian population~~ ; very small; ~~diminutive in stature~~; ~~a lilliputian chest of drawers~~; ~~her petite figure~~; ~~tiny feet~~; ~~the flyspeck nation of Bahrain moved toward democracy~~",
"nnixs": [0, 1],
"reason": "other adj: tiny found in def"
},
"rank": 0.07
},
"trace": {
"negligible.a.01": {
"def": "so small as to be meaningless; insignificant; ~~the effect was negligible~~",
"nnixs": [0, 1],
"reason": "synset_part1: negligible equals adj"
},
"rank": 0.07
},
"tremendous": {
"fantastic.a.02": {
"def": "extraordinarily good; used especially as intensifiers; ~~a fantastic trip to the Orient~~; ~~the film was fantastic!~~; ~~a howling success~~; ~~a marvelous collection of rare books~~; ~~had a rattling conversation about politics~~; ~~a tremendous achievement~~ ; extreme in degree or extent or amount or impact; ~~in a frightful hurry~~; ~~spent a frightful amount of money~~ ; extraordinarily large in size or extent or amount or power or degree; ~~an enormous boulder~~; ~~enormous expenses~~; ~~tremendous sweeping plains~~; ~~a tremendous fact in human experience; that a whole civilization should be dependent on technology~~- Walter Lippman; ~~a plane took off with a tremendous noise~~",
"nnixs": [0, 1],
"reason": "noun: amount found in def"
},
"rank": 0.71
},
"trivial": {
"trivial.a.01": {
"def": "concerned with trivialities; ~~a trivial young woman~~; ~~a trivial mind~~ ; obvious and dull; ~~trivial conversation~~; ~~commonplace prose~~ ; not large enough to consider or notice ; (informal) small and of little importance; ~~a fiddling sum of money~~; ~~a footling gesture~~; ~~our worries are lilliputian compared with those of countries that are at war~~; ~~a little (or small) matter~~; ~~a dispute over niggling details~~; ~~limited to petty enterprises~~; ~~piffling efforts~~; ~~giving a police officer a free meal may be against the law, but it seems to be a picayune infraction~~ ; of little substance or significance; ~~a few superficial editorial changes~~; ~~only trivial objections~~",
"nnixs": [0, 1],
"reason": "synset_part1: trivial equals adj"
},
"rank": 0.07
},
"unbelievable": {
"incredible.a.01": {
"def": "beyond belief or understanding; ~~at incredible speed~~; ~~the book~~s plot is simply incredible~~",
"nnixs": [0, 1],
"reason": "other adj: incredible found in def"
},
"rank": 0.79
},
"unlimited": {
"unlimited.a.01": {
"def": "having no limits in range or scope; ~~to start with a theory of unlimited freedom is to end up with unlimited despotism~~- Philip Rahv; ~~the limitless reaches of outer space~~ ; without limits in extent or size or quantity; ~~immeasurable vastness of our solar system~~ ; seemingly boundless in amount, number, degree, or especially extent; ~~unbounded enthusiasm~~; ~~children with boundless energy~~; ~~a limitless supply of money~~",
"nnixs": [0, 1],
"reason": "synset_part1: unlimited equals adj"
},
"rank": 1.0
},
"voluminous": {
"voluminous.a.01": {
"def": "large in volume or bulk; ~~a voluminous skirt~~",
"nnixs": [0, 1],
"reason": "synset_part1: voluminous equals adj"
},
"rank": 0.57
}
},
"nodes": [{
"id": 17078,
"name": "amount",
"synset": "measurement.n.01",
"def": "the act or process of assigning numbers to phenomena according to a rule; ~~the measurements were carefully done~~; ~~his mental measurings proved remarkably accurate~~ ; how much there is of something that you can quantify ; measuring instrument having a sequence of marks at regular intervals; used as a reference in making measurements ; a statute in draft before it becomes law; ~~they held a public hearing on the bill~~ ; musical notation for a repeating pattern of musical beats; ~~the orchestra omitted the last twelve bars of the song~~ ; any maneuver made as part of progress toward a goal; ~~the situation called for strong measures~~; ~~the police took steps to reduce crime~~"
}, {
"id": 52443,
"name": "amount",
"synset": "amount.n.01",
"def": "how much of something is available; ~~an adequate amount of food for four people~~ ; a quantity obtained by the addition of a group of numbers ; a quantity of money; ~~he borrowed a large sum~~; ~~the amount he had in cash was insufficient~~"
}]
},
"angle": {
"ranked": [
["acute", "narrow"], "right", ["obtuse", "wide"]
],
"values": {
"acute": {
"acute.a.01": {
"def": "having or experiencing a rapid onset and short but severe course; ~~acute appendicitis~~; ~~the acute phase of the illness~~; ~~acute patients~~ ; of critical importance and consequence; ~~an acute (or critical) lack of research funds~~ ; extremely sharp or intense; ~~acute pain~~; ~~felt acute annoyance~~; ~~intense itching and burning~~ ; of an angle; less than 90 degrees",
"nnixs": [0],
"reason": "synset_part1: acute equals adj"
},
"rank": 0.33
},
"narrow": {
"narrow.a.01": {
"def": "limited in size or scope; ~~the narrow sense of a word~~ ; very limited in degree; ~~won by a narrow margin~~; ~~a narrow escape~~ ; not wide; ~~a narrow bridge~~; ~~a narrow line across the page~~ ; lacking tolerance or flexibility or breadth of view; ~~a brilliant but narrow-minded judge~~; ~~narrow opinions~~",
"nnixs": [0],
"reason": "synset_part1: narrow equals adj"
},
"rank": 0.33
},
"obtuse": {
"broad.a.01": {
"def": "being at a peak or culminating point; ~~broad day~~; ~~full summer~~ ; (of speech) heavily and noticeably regional; ~~a broad southern accent~~ ; broad in scope or content; ~~across-the-board pay increases~~; ~~an all-embracing definition~~; ~~blanket sanctions against human-rights violators~~; ~~an invention with broad applications~~; ~~a panoptic study of Soviet nationality~~- T.G.Winner; ~~granted him wide powers~~ ; not detailed or specific; ~~a broad rule~~; ~~the broad outlines of the plan~~; ~~felt an unspecific dread~~ ; lacking subtlety; obvious; ~~gave us a broad hint that it was time to leave~~ ; having great (or a certain) extent from one side to the other; ~~wide roads~~; ~~a wide necktie~~; ~~wide margins~~; ~~three feet wide~~; ~~a river two miles broad~~; ~~broad shoulders~~; ~~a broad river~~ ; showing or characterized by broad-mindedness; ~~a broad political stance~~; ~~generous and broad sympathies~~; ~~a liberal newspaper~~; ~~tolerant of his opponent~~s opinions~~",
"nnixs": [0],
"reason": "other adj: wide found in def"
},
"rank": 1.0
},
"right": {
"rank": 0.67
},
"wide": {
"broad.a.01": {
"def": "being at a peak or culminating point; ~~broad day~~; ~~full summer~~ ; (of speech) heavily and noticeably regional; ~~a broad southern accent~~ ; broad in scope or content; ~~across-the-board pay increases~~; ~~an all-embracing definition~~; ~~blanket sanctions against human-rights violators~~; ~~an invention with broad applications~~; ~~a panoptic study of Soviet nationality~~- T.G.Winner; ~~granted him wide powers~~ ; not detailed or specific; ~~a broad rule~~; ~~the broad outlines of the plan~~; ~~felt an unspecific dread~~ ; lacking subtlety; obvious; ~~gave us a broad hint that it was time to leave~~ ; having great (or a certain) extent from one side to the other; ~~wide roads~~; ~~a wide necktie~~; ~~wide margins~~; ~~three feet wide~~; ~~a river two miles broad~~; ~~broad shoulders~~; ~~a broad river~~ ; showing or characterized by broad-mindedness; ~~a broad political stance~~; ~~generous and broad sympathies~~; ~~a liberal newspaper~~; ~~tolerant of his opponent~~s opinions~~",
"nnixs": [0],
"reason": "other adj: wide found in def"
},
"rank": 1.0
}
},
"nodes": [{
"id": 84528,
"name": "angle",
"synset": "angle.n.01",
"def": "a member of a Germanic people who conquered England and merged with the Saxons and Jutes to become Anglo-Saxons ; a biased way of looking at or presenting something ; the space between two lines or planes that intersect; the inclination of one line to another; measured in degrees or radians"
}]
},
"attractiveness": {
"ranked": ["ugly", "unattractive", "plain", "attractive", "beautiful"],
"values": {
"ugly": {
"ugly.a.01": {
"def": "displeasing to the senses; ~~an ugly face~~; ~~ugly furniture~~ ; inclined to anger or bad feelings with overtones of menace; ~~a surly waiter~~; ~~an ugly frame of mind~~",
"nnixs": [0],
"reason": "synset_part1: ugly equals adj"
},
"rank": 0.2
},
"unattractive": {
"unattractive.a.01": {
"def": "lacking power to arouse interest; ~~being unemployed is a most unattractive prospect~~ ; lacking beauty or charm; ~~as unattractive as most mining regions~~ ; not appealing to the senses; ~~untempting food~~",
"nnixs": [0],
"reason": "synset_part1: unattractive equals adj"
},
"rank": 0.4
},
"plain": {
"plain.a.02": {
"def": "not elaborate or elaborated; simple; ~~plain food~~; ~~stuck to the plain facts~~; ~~a plain blue suit~~; ~~a plain rectangular brick building~~ ; lacking patterns especially in color ; lacking embellishment or ornamentation; ~~a plain hair style~~; ~~unembellished white walls~~; ~~functional architecture featuring stark unornamented concrete~~ ; free from any effort to soften to disguise; ~~the plain and unvarnished truth~~; ~~the unvarnished candor of old people and children~~",
"nnixs": [0],
"reason": "synset_part1: plain equals adj"
},
"rank": 0.6
},
"attractive": {
"attractive.a.01": {
"def": "pleasing to the eye or mind especially through beauty or charm; ~~a remarkably attractive young man~~; ~~an attractive personality~~; ~~attractive clothes~~; ~~a book with attractive illustrations~~ ; having power to arouse interest; ~~an attractive opportunity~~; ~~the job is attractive because of the pay~~",
"nnixs": [0],
"reason": "synset_part1: attractive equals adj"
},
"rank": 0.8
},
"beautiful": {
"beautiful.a.01": {
"def": "aesthetically pleasing ; delighting the senses or exciting intellectual or emotional admiration; ~~a beautiful child~~; ~~beautiful country~~; ~~a beautiful painting~~; ~~a beautiful theory~~; ~~a beautiful party~~ ; (of weather) highly enjoyable; ~~what a beautiful day~~",
"nnixs": [0],
"reason": "synset_part1: beautiful equals adj"
},
"rank": 1.0
}
},
"nodes": [{
"id": 49235,
"name": "attractiveness",
"synset": "attractiveness.n.01",
"def": "a beauty that appeals to the senses ; the quality of arousing interest; being attractive or something that attracts; ~~her personality held a strange attraction for him~~"
}]
},
"central tendency": {
"ranked": ["mean", "median", "mode"],
"values": {
"mean": {
"rank": 0.33
},
"median": {
"median.a.01": {
"def": "relating to or situated in or extending toward the middle ; dividing an animal into right and left halves",
"nnixs": [],
"reason": "synset_part1: median equals adj"
},
"rank": 0.67
},
"mode": {
"modal.a.01": {
"def": "relating to or constituting the most frequent value in a distribution; ~~the modal age at which American novelists reach their peak is 30~~ ; approximating the statistical norm or average or expected value; ~~the average income in New England is below that of the nation~~; ~~of average height for his age~~; ~~the mean annual rainfall~~ ; relating to or constituting the middle value of an ordered set of values (or the average of the middle two in a set with an even number of values); ~~the median value of 17, 20, and 36 is 20~~; ~~the median income for the year was $15,000~~",
"nnixs": [],
"reason": "other adj: median found in def"
},
"rank": 1.0
}
},
"nodes": []
},
"change": {
"ranked": [
["infinitesimal", "insignificant", "tiny"],
["little", "slight", "small"],
["appreciable", "considerable", "much", "significant"], "big", ["huge", "immense", "massive", "enormous", "excessive", "astonishing", "astounding", "phenomenal", "wholesale"],
["abnormal", "overwhelming"], "complete"
],
"values": {
"abnormal": {
"abnormal.a.01": {
"def": "much greater than the normal; ~~abnormal profits~~; ~~abnormal ambition~~ ; not normal; not typical or usual or regular or conforming to a norm; ~~abnormal powers of concentration~~; ~~abnormal amounts of rain~~; ~~abnormal circumstances~~; ~~an abnormal interest in food~~ ; departing from the normal in e.g. intelligence and development; ~~they were heartbroken when they learned their child was abnormal~~; ~~an abnormal personality~~",
"nnixs": [1],
"reason": "synset_part1: abnormal equals adj"
},
"rank": 0.86
},
"appreciable": {
"appreciable.a.01": {
"def": "enough to be estimated or measured; ~~appreciable amounts of noxious wastes are dumped into the harbor~~",
"nnixs": [1],
"reason": "synset_part1: appreciable equals adj"
},
"rank": 0.43
},
"astonishing": {
"astounding.a.01": {
"def": "bewildering or striking dumb with wonder ; so surprisingly impressive as to stun or overwhelm; ~~such an enormous response was astonishing~~; ~~an astounding achievement~~; ~~the amount of money required was staggering~~; ~~suffered a staggering defeat~~; ~~the figure inside the boucle dress was stupefying~~",
"nnixs": [1],
"reason": "other adj: enormous found in def"
},
"amazing.a.01": {
"def": "surprising greatly; ~~she does an amazing amount of work~~; ~~the dog was capable of astonishing tricks~~ ; inspiring awe or admiration or wonder; ~~New York is an amazing city~~; ~~the Grand Canyon is an awe-inspiring sight~~; ~~the awesome complexity of the universe~~; ~~this sea, whose gently awful stirrings seem to speak of some hidden soul beneath~~- Melville; ~~Westminster Hall~~s awing majesty, so vast, so high, so silent~~",
"nnixs": [1],
"reason": "other adj: astonishing found in def"
},
"rank": 0.71
},
"astounding": {
"astounding.a.01": {
"def": "bewildering or striking dumb with wonder ; so surprisingly impressive as to stun or overwhelm; ~~such an enormous response was astonishing~~; ~~an astounding achievement~~; ~~the amount of money required was staggering~~; ~~suffered a staggering defeat~~; ~~the figure inside the boucle dress was stupefying~~",
"nnixs": [1],
"reason": "synset_part1: astounding equals adj"
},
"rank": 0.71
},
"big": {
"big.a.02": {
"def": "feeling self-importance; ~~too big for his britches~~; ~~had a swelled head~~; ~~he was swelled with pride~~ ; given or giving freely; ~~was a big tipper~~; ~~the bounteous goodness of God~~; ~~bountiful compliments~~; ~~a freehanded host~~; ~~a handsome allowance~~; ~~Saturday~~s child is loving and giving~~; ~~a liberal backer of the arts~~; ~~a munificent gift~~; ~~her fond and openhanded grandfather~~ ; prodigious; ~~big spender~~; ~~big eater~~; ~~heavy investor~~ ; in an advanced stage of pregnancy; ~~was big with child~~; ~~was great with child~~ ; (of animals) fully developed; ~~an adult animal~~; ~~a grown woman~~ ; very intense; ~~a bad headache~~; ~~in a big rage~~; ~~had a big (or bad) shock~~; ~~a bad earthquake~~; ~~a bad storm~~ ; generous and understanding and tolerant; ~~a heart big enough to hold no grudges~~; ~~that~~s very big of you to be so forgiving~~; ~~a large and generous spirit~~; ~~a large heart~~; ~~magnanimous toward his enemies~~ ; marked by intense physical force; ~~a big wind~~ ; significant; ~~graduation was a big day in his life~~ ; above average in size or number or quantity or magnitude or extent; ~~a large city~~; ~~set out for the big city~~; ~~a large sum~~; ~~a big (or large) barn~~; ~~a large family~~; ~~big businesses~~; ~~a big expenditure~~; ~~a large number of newspapers~~; ~~a big group of scientists~~; ~~large areas of the world~~ ; loud and firm; ~~a big voice~~; ~~big bold piano sounds~~ ; exhibiting self-importance; ~~big talk~~",
"nnixs": [1],
"reason": "synset_part1: big equals adj"
},
"rank": 0.57
},
"complete": {
"full.a.02": {
"def": "complete in extent or degree and in every particular; ~~a full game~~; ~~a total eclipse~~; ~~a total disaster~~ ; including everything; ~~the overall cost~~; ~~the total amount owed~~",
"nnixs": [1],
"reason": "manual addition"
},
"entire.a.01": {
"def": "constituting the full quantity or extent; complete; ~~an entire town devastated by an earthquake~~; ~~gave full attention~~; ~~a total failure~~ ; (of leaves or petals) having a smooth edge; not broken up into teeth or lobes ; constituting the undiminished entirety; lacking nothing essential especially not damaged; ~~a local motion keepeth bodies integral~~- Bacon; ~~was able to keep the collection entire during his lifetime~~; ~~fought to keep the union intact~~",
"nnixs": [1],
"reason": "manual addition"
},
"whole.a.01": {
"def": "(of siblings) having the same parents; ~~whole brothers and sisters~~ ; including all components without exception; being one unit or constituting the full amount or extent or duration; complete; ~~gave his whole attention~~; ~~a whole wardrobe for the tropics~~; ~~the whole hog~~; ~~a whole week~~; ~~the baby cried the whole trip home~~; ~~a whole loaf of bread~~ ; exhibiting or restored to vigorous good health; ~~hale and hearty~~; ~~whole in mind and body~~; ~~a whole person again~~",
"nnixs": [1],
"reason": "manual addition"
},
"rank": 1.0
},
"considerable": {
"considerable.a.01": {
"def": "large or relatively large in number or amount or extent or degree; ~~a considerable quantity~~; ~~the economy was a considerable issue in the campaign~~; ~~went to considerable trouble for us~~; ~~spent a considerable amount of time on the problem~~",
"nnixs": [1],
"reason": "synset_part1: considerable equals adj"
},
"rank": 0.43
},
"enormous": {
"fantastic.a.02": {
"def": "extraordinarily good; used especially as intensifiers; ~~a fantastic trip to the Orient~~; ~~the film was fantastic!~~; ~~a howling success~~; ~~a marvelous collection of rare books~~; ~~had a rattling conversation about politics~~; ~~a tremendous achievement~~ ; extreme in degree or extent or amount or impact; ~~in a frightful hurry~~; ~~spent a frightful amount of money~~ ; extraordinarily large in size or extent or amount or power or degree; ~~an enormous boulder~~; ~~enormous expenses~~; ~~tremendous sweeping plains~~; ~~a tremendous fact in human experience; that a whole civilization should be dependent on technology~~- Walter Lippman; ~~a plane took off with a tremendous noise~~",
"nnixs": [1],
"reason": "other adj: enormous found in def"
},
"rank": 0.71
},
"excessive": {
"excessive.a.01": {
"def": "unrestrained, especially with regard to feelings; ~~extravagant praise~~; ~~exuberant compliments~~; ~~overweening ambition~~; ~~overweening greed~~ ; joyously unrestrained",
"nnixs": [1],
"reason": "synset_part1: excessive equals adj"
},
"rank": 0.71
},
"huge": {
"huge.a.01": {
"def": "unusually great in size or amount or degree or especially extent or scope; ~~huge government spending~~; ~~huge country estates~~; ~~huge popular demand for higher education~~; ~~a huge wave~~; ~~the Los Angeles aqueduct winds like an immense snake along the base of the mountains~~; ~~immense numbers of birds~~; ~~at vast (or immense) expense~~; ~~the vast reaches of outer space~~; ~~the vast accumulation of knowledge...which we call civilization~~- W.R.Inge ; huge; relating to or characteristic of the imaginary country of Brobdingnag",
"nnixs": [1],
"reason": "synset_part1: huge equals adj"
},
"rank": 0.71
},
"immense": {
"huge.a.01": {
"def": "unusually great in size or amount or degree or especially extent or scope; ~~huge government spending~~; ~~huge country estates~~; ~~huge popular demand for higher education~~; ~~a huge wave~~; ~~the Los Angeles aqueduct winds like an immense snake along the base of the mountains~~; ~~immense numbers of birds~~; ~~at vast (or immense) expense~~; ~~the vast reaches of outer space~~; ~~the vast accumulation of knowledge...which we call civilization~~- W.R.Inge ; huge; relating to or characteristic of the imaginary country of Brobdingnag",
"nnixs": [1],
"reason": "synset_part1: huge equals adj"
},
"rank": 0.71
},
"infinitesimal": {
"microscopic.a.01": {
"def": "too small to be seen except under a microscope ; extremely precise with great attention to details; ~~examined it with microscopic care~~ ; infinitely or immeasurably small; ~~two minute whiplike threads of protoplasm~~; ~~reduced to a microscopic scale~~ ; of or relating to or used in microscopy; ~~microscopic analysis~~; ~~microscopical examination~~",
"nnixs": [1],
"reason": "other adj: small found in def"
},
"rank": 0.14
},
"insignificant": {
"insignificant.a.01": {
"def": "of little importance or influence or power; of minor status; ~~a minor, insignificant bureaucrat~~; ~~peanut politicians~~ ; signifying nothing; ~~insignificant sounds~~; ~~his response...is picayune and unmeaning~~- R.B. Pearsall ; not worthy of notice",
"nnixs": [1],
"reason": "synset_part1: insignificant equals adj"
},
"rank": 0.14
},
"little": {
"little.a.02": {
"def": "(of children and animals) young, immature; ~~what a big little boy you are~~; ~~small children~~ ; (of a voice) faint; ~~a little voice~~; ~~a still small voice~~ ; (quantifier used with mass nouns) small in quantity or degree; not much or almost none or (with ~~a~~) at least some; ~~little rain fell in May~~; ~~gave it little thought~~; ~~little hope remained~~; ~~little time is left~~; ~~we still have little money~~; ~~a little hope remained~~ ; limited or below average in number or quantity or magnitude or extent; ~~a little dining room~~; ~~a little house~~; ~~a small car~~; ~~a little (or small) group~~ ; small in a way that arouses feelings (of tenderness or its opposite depending on the context); ~~a nice little job~~; ~~bless your little heart~~; ~~my dear little mother~~; ~~a sweet little deal~~; ~~I~~m tired of your petty little schemes~~; ~~filthy little tricks~~; ~~what a nasty little situation~~",
"nnixs": [1],
"reason": "synset_part1: little equals adj"
},
"rank": 0.29
},
"massive": {
"massive.a.01": {
"def": "imposing in size or bulk or solidity; ~~massive oak doors~~; ~~Moore~~s massive sculptures~~; ~~the monolithic proportions of Stalinist architecture~~; ~~a monumental scale~~ ; being the same substance throughout; ~~massive silver~~ ; imposing in scale or scope or degree or power; ~~massive retaliatory power~~; ~~a massive increase in oil prices~~; ~~massive changes~~ ; consisting of great mass; containing a great quantity of matter; ~~Earth is the most massive of the terrestrial planets~~",
"nnixs": [1],
"reason": "synset_part1: massive equals adj"
},
"rank": 0.71
},
"much": {
"rank": 0.43
},
"overwhelming": {
"consuming.a.01": {
"def": "very intense; ~~politics is his consuming passion~~; ~~overwhelming joy~~ ; so strong as to be irresistible; ~~an overpowering need for solitude~~; ~~the temptation to despair may become overwhelming~~; ~~an overwhelming majority~~",
"nnixs": [1],
"reason": "other adj: overwhelming found in def"
},
"rank": 0.86
},
"phenomenal": {
"phenomenal.a.01": {
"def": "of or relating to a phenomenon; ~~phenomenal science~~ ; exceedingly or unbelievably great; ~~the bomb did fantastic damage~~; ~~Samson is supposed to have had fantastic strength~~; ~~phenomenaRl feats of memory~~",
"nnixs": [1],
"reason": "manual addition"
},
"rank": 0.71
},
"significant": {
"important.a.01": {
"def": "of great significance or value; ~~important people~~; ~~the important questions of the day~~ ; having or suggesting a consciousness of high position; ~~recited the decree with an important air~~; ~~took long important strides in the direction of his office~~ ; having authority or ascendancy or influence; ~~an important official~~; ~~the captain~~s authoritative manner~~ ; important in effect or meaning; ~~a significant change in tax laws~~; ~~a significant change in the Constitution~~; ~~a significant contribution~~; ~~significant details~~; ~~statistically significant~~ ; of extreme importance; vital to the resolution of a crisis; ~~a crucial moment in his career~~; ~~a crucial election~~; ~~a crucial issue for women~~",
"nnixs": [1],
"reason": "noun: change found in def"
},
"significant.a.01": {
"def": "too closely correlated to be attributed to chance and therefore indicating a systematic relation; ~~the interaction effect is significant at the .01 level~~; ~~no significant difference was found~~ ; fairly large; ~~won by a substantial margin~~ ; rich in significance or implication; ~~a meaning look~~; ~~pregnant with meaning~~",
"nnixs": [1],
"reason": "synset_part1: significant equals adj"
},
"rank": 0.43
},
"slight": {
"slight.a.01": {
"def": "almost no or (with ~~a~~) at least some; very little; ~~there~~s slight chance that it will work~~; ~~there~~s a slight chance it will work~~",
"nnixs": [1],
"reason": "synset_part1: slight equals adj"
},
"rank": 0.29
},
"small": {
"small.a.02": {
"def": "of or relating to a small cursive script developed from uncial; 7th to 9th centuries ; very small; ~~a minuscule kitchen~~; ~~a minuscule amount of rain fell~~ ; lowercase; ~~little a~~; ~~small a~~; ~~e.e.cummings~~s poetry is written all in minuscule letters~~",
"nnixs": [1],
"reason": "synset_part1: small equals adj"
},
"rank": 0.29
},
"tiny": {
"lilliputian.a.01": {
"def": "tiny; relating to or characteristic of the imaginary country of Lilliput; ~~the Lilliputian population~~ ; very small; ~~diminutive in stature~~; ~~a lilliputian chest of drawers~~; ~~her petite figure~~; ~~tiny feet~~; ~~the flyspeck nation of Bahrain moved toward democracy~~",
"nnixs": [1],
"reason": "other adj: tiny found in def"
},
"rank": 0.14
},
"wholesale": {
"wholesale.a.01": {
"def": "selling or related to selling goods in large quantities for resale to the consumer; ~~wholesale prices~~; ~~a wholesale produce market~~",
"nnixs": [1],
"reason": "synset_part1: wholesale equals adj"
},
"rank": 0.71
}
},
"nodes": [{
"id": 73960,
"name": "change",
"synset": "variety.n.01",
"def": "(biology) a taxonomic category consisting of members of a species that differ from others of the same species in minor but heritable characteristics; ~~varieties are frequently recognized in botany~~ ; a difference that is usually pleasant; ~~he goes to France for variety~~; ~~it is a refreshing change to meet a woman mechanic~~ ; a show consisting of a series of short unrelated performances ; a collection containing a variety of sorts of things; ~~a great assortment of cars was on display~~; ~~he had a variety of disorders~~; ~~a veritable smorgasbord of religions~~ ; noticeable heterogeneity; ~~a diversity of possibilities~~; ~~the range and variety of his work is amazing~~"
}, {
"id": 101082,
"name": "change",
"synset": "change.n.01",
"def": "the result of alteration or modification; ~~there were marked changes in the lining of the lungs~~; ~~there had been no change in the mountains~~ ; coins of small denomination regarded collectively; ~~he had a pocketful of change~~ ; the action of changing something; ~~the change of government had no impact on the economy~~; ~~his change on abortion cost him the election~~ ; an event that occurs when something passes from one state or phase to another; ~~the change was intended to increase sales~~; ~~this storm is certainly a change for the worse~~; ~~the neighborhood had undergone few modifications since his last visit years ago~~ ; a relational difference between states; especially between states before and after some event; ~~he attributed the change to their marriage~~ ; money received in return for its equivalent in a larger denomination or a different currency; ~~he got change for a twenty and used it to pay the taxi driver~~ ; the balance of money received when the amount you tender is greater than the amount due; ~~I paid with a twenty and pocketed the change~~ ; a different or fresh set of clothes; ~~she brought a change in her overnight bag~~ ; a thing that is different; ~~he inspected several changes before selecting one~~"
}]
},
"cold": {
"ranked": ["slight", ["bitter", "chilling", "deadly", "freezing", "icy", "intense"],
["extreme", "frigid", "numbing", "severe"]
],
"values": {
"bitter": {
"bitter.a.02": {
"def": "proceeding from or exhibiting great hostility or animosity; ~~a bitter struggle~~; ~~bitter enemies~~ ; marked by strong resentment or cynicism; ~~an acrimonious dispute~~; ~~bitter about the divorce~~ ; very difficult to accept or bear; ~~the bitter truth~~; ~~a bitter sorrow~~ ; expressive of severe grief or regret; ~~shed bitter tears~~ ; causing a sharply painful or stinging sensation; used especially of cold; ~~bitter cold~~; ~~a biting wind~~ ; one of the four basic taste sensations; sharp and disagreeable; like the taste of quinine",
"nnixs": [0],
"reason": "synset_part1: bitter equals adj"
},
"rank": 0.67
},
"chilling": {
"cold.a.01": {
"def": "so intense as to be almost uncontrollable; ~~cold fury gripped him~~ ; used of physical coldness; having a low or inadequate temperature or feeling a sensation of coldness or having been made cold by e.g. ice or refrigeration; ~~a cold climate~~; ~~a cold room~~; ~~dinner has gotten cold~~; ~~cold fingers~~; ~~if you are cold, turn up the heat~~; ~~a cold beer~~ ; unconscious from a blow or shock or intoxication; ~~the boxer was out cold~~; ~~pass out cold~~ ; marked by errorless familiarity; ~~had her lines cold before rehearsals started~~ ; extended meanings; especially of psychological coldness; without human warmth or emotion; ~~a cold unfriendly nod~~; ~~a cold and unaffectionate person~~; ~~a cold impersonal manner~~; ~~cold logic~~; ~~the concert left me cold~~ ; sexually unresponsive; ~~was cold to his advances~~; ~~a frigid woman~~ ; of a seeker; far from the object sought ; (color) giving no sensation of warmth; ~~a cold bluish grey~~ ; having lost freshness through passage of time; ~~a cold trail~~; ~~dogs attempting to catch a cold scent~~ ; lacking the warmth of life; ~~cold in his grave~~ ; feeling or showing no enthusiasm; ~~a cold audience~~; ~~a cold response to the new play~~",
"nnixs": [0],
"reason": "noun: temperature found in def"
},
"rank": 0.67
},
"deadly": {
"cold.a.01": {
"def": "so intense as to be almost uncontrollable; ~~cold fury gripped him~~ ; used of physical coldness; having a low or inadequate temperature or feeling a sensation of coldness or having been made cold by e.g. ice or refrigeration; ~~a cold climate~~; ~~a cold room~~; ~~dinner has gotten cold~~; ~~cold fingers~~; ~~if you are cold, turn up the heat~~; ~~a cold beer~~ ; unconscious from a blow or shock or intoxication; ~~the boxer was out cold~~; ~~pass out cold~~ ; marked by errorless familiarity; ~~had her lines cold before rehearsals started~~ ; extended meanings; especially of psychological coldness; without human warmth or emotion; ~~a cold unfriendly nod~~; ~~a cold and unaffectionate person~~; ~~a cold impersonal manner~~; ~~cold logic~~; ~~the concert left me cold~~ ; sexually unresponsive; ~~was cold to his advances~~; ~~a frigid woman~~ ; of a seeker; far from the object sought ; (color) giving no sensation of warmth; ~~a cold bluish grey~~ ; having lost freshness through passage of time; ~~a cold trail~~; ~~dogs attempting to catch a cold scent~~ ; lacking the warmth of life; ~~cold in his grave~~ ; feeling or showing no enthusiasm; ~~a cold audience~~; ~~a cold response to the new play~~",
"nnixs": [0],
"reason": "noun: temperature found in def"
},
"rank": 0.67
},
"extreme": {
"extreme.a.01": {
"def": "beyond a norm in views or actions; ~~an extreme conservative~~; ~~an extreme liberal~~; ~~extreme views on integration~~; ~~extreme opinions~~ ; most distant in any direction; ~~the extreme edge of town~~ ; far beyond a norm in quantity or amount or degree; to an utmost degree; ~~an extreme example~~; ~~extreme temperatures~~; ~~extreme danger~~ ; of the greatest possible degree or extent or intensity; ~~extreme cold~~; ~~extreme caution~~; ~~extreme pleasure~~; ~~utmost contempt~~; ~~to the utmost degree~~; ~~in the uttermost distress~~",
"nnixs": [0],
"reason": "synset_part1: extreme equals adj"
},
"rank": 1.0
},
"freezing": {
"cold.a.01": {
"def": "devoid of warmth and cordiality; expressive of unfriendliness or disdain; ~~a frigid greeting~~; ~~got a frosty reception~~; ~~a frozen look on their faces~~; ~~a glacial handshake~~; ~~icy stare~~; ~~wintry smile~~ ; shiny and slick as with a thin coating of ice; ~~roads and trees glazed with an icy film~~ ; extremely cold; ~~an arctic climate~~; ~~a frigid day~~; ~~gelid waters of the North Atlantic~~; ~~glacial winds~~; ~~icy hands~~; ~~polar weather~~ ; covered with or containing or consisting of ice; ~~icy northern waters~~",
"nnixs": [0],
"reason": "other adj: icy found in def"
},
"rank": 0.67
},
"frigid": {
"frigid.a.01": {
"def": "so intense as to be almost uncontrollable; ~~cold fury gripped him~~ ; used of physical coldness; having a low or inadequate temperature or feeling a sensation of coldness or having been made cold by e.g. ice or refrigeration; ~~a cold climate~~; ~~a cold room~~; ~~dinner has gotten cold~~; ~~cold fingers~~; ~~if you are cold, turn up the heat~~; ~~a cold beer~~ ; unconscious from a blow or shock or intoxication; ~~the boxer was out cold~~; ~~pass out cold~~ ; marked by errorless familiarity; ~~had her lines cold before rehearsals started~~ ; extended meanings; especially of psychological coldness; without human warmth or emotion; ~~a cold unfriendly nod~~; ~~a cold and unaffectionate person~~; ~~a cold impersonal manner~~; ~~cold logic~~; ~~the concert left me cold~~ ; sexually unresponsive; ~~was cold to his advances~~; ~~a frigid woman~~ ; of a seeker; far from the object sought ; (color) giving no sensation of warmth; ~~a cold bluish grey~~ ; having lost freshness through passage of time; ~~a cold trail~~; ~~dogs attempting to catch a cold scent~~ ; lacking the warmth of life; ~~cold in his grave~~ ; feeling or showing no enthusiasm; ~~a cold audience~~; ~~a cold response to the new play~~",
"nnixs": [0],
"reason": "noun: temperature found in def"
},
"rank": 1.0
},
"icy": {
"cold.a.01": {
"def": "so intense as to be almost uncontrollable; ~~cold fury gripped him~~ ; used of physical coldness; having a low or inadequate temperature or feeling a sensation of coldness or having been made cold by e.g. ice or refrigeration; ~~a cold climate~~; ~~a cold room~~; ~~dinner has gotten cold~~; ~~cold fingers~~; ~~if you are cold, turn up the heat~~; ~~a cold beer~~ ; unconscious from a blow or shock or intoxication; ~~the boxer was out cold~~; ~~pass out cold~~ ; marked by errorless familiarity; ~~had her lines cold before rehearsals started~~ ; extended meanings; especially of psychological coldness; without human warmth or emotion; ~~a cold unfriendly nod~~; ~~a cold and unaffectionate person~~; ~~a cold impersonal manner~~; ~~cold logic~~; ~~the concert left me cold~~ ; sexually unresponsive; ~~was cold to his advances~~; ~~a frigid woman~~ ; of a seeker; far from the object sought ; (color) giving no sensation of warmth; ~~a cold bluish grey~~ ; having lost freshness through passage of time; ~~a cold trail~~; ~~dogs attempting to catch a cold scent~~ ; lacking the warmth of life; ~~cold in his grave~~ ; feeling or showing no enthusiasm; ~~a cold audience~~; ~~a cold response to the new play~~",
"nnixs": [0],
"reason": "noun: temperature found in def"
},
"rank": 0.67
},
"intense": {
"intense.a.01": {
"def": "in an extreme degree; ~~intense heat~~; ~~intense anxiety~~; ~~intense desire~~; ~~intense emotion~~; ~~the skunk~~s intense acrid odor~~; ~~intense pain~~; ~~enemy fire was intense~~",
"nnixs": [0],
"reason": "synset_part1: intense equals adj"
},
"rank": 0.67
},
"numbing": {
"cold.a.01": {
"def": "so intense as to be almost uncontrollable; ~~cold fury gripped him~~ ; used of physical coldness; having a low or inadequate temperature or feeling a sensation of coldness or having been made cold by e.g. ice or refrigeration; ~~a cold climate~~; ~~a cold room~~; ~~dinner has gotten cold~~; ~~cold fingers~~; ~~if you are cold, turn up the heat~~; ~~a cold beer~~ ; unconscious from a blow or shock or intoxication; ~~the boxer was out cold~~; ~~pass out cold~~ ; marked by errorless familiarity; ~~had her lines cold before rehearsals started~~ ; extended meanings; especially of psychological coldness; without human warmth or emotion; ~~a cold unfriendly nod~~; ~~a cold and unaffectionate person~~; ~~a cold impersonal manner~~; ~~cold logic~~; ~~the concert left me cold~~ ; sexually unresponsive; ~~was cold to his advances~~; ~~a frigid woman~~ ; of a seeker; far from the object sought ; (color) giving no sensation of warmth; ~~a cold bluish grey~~ ; having lost freshness through passage of time; ~~a cold trail~~; ~~dogs attempting to catch a cold scent~~ ; lacking the warmth of life; ~~cold in his grave~~ ; feeling or showing no enthusiasm; ~~a cold audience~~; ~~a cold response to the new play~~",