ekms 8.0.0-beta.7 → 8.0.0-beta.70
Sign up to get free protection for your applications and to get access to all the features.
- package/common/animals.instance.json +2871 -1379
- package/common/animals.js +17 -20
- package/common/articles.js +103 -0
- package/common/articles.test.json +310 -0
- package/common/avatar.js +5 -9
- package/common/characters.js +22 -28
- package/common/colors.instance.json +7170 -3657
- package/common/colors.js +4 -8
- package/common/colors.test.json +345 -780
- package/common/comparable.instance.json +1750 -0
- package/common/comparable.js +36 -28
- package/common/comparable.test.json +438 -2
- package/common/concept.js +120 -118
- package/common/countable.js +19 -13
- package/common/countable.test.json +1050 -0
- package/common/crew.instance.json +13066 -6469
- package/common/crew.js +36 -41
- package/common/crew.test.json +714 -452
- package/common/currency.js +27 -45
- package/common/dialogues.js +161 -285
- package/common/dimension.instance.json +474 -253
- package/common/dimension.js +16 -22
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +20053 -10093
- package/common/edible.js +3 -8
- package/common/emotions.instance.json +147 -69
- package/common/emotions.js +35 -38
- package/common/evaluate.instance.json +2 -0
- package/common/evaluate.js +49 -0
- package/common/evaluate.test.json +574 -0
- package/common/events.js +10 -14
- package/common/fastfood.instance.json +221166 -111223
- package/common/fastfood.js +75 -85
- package/common/fastfood.test.json +268 -90
- package/common/formulas.instance.json +455 -249
- package/common/formulas.js +19 -26
- package/common/gdefaults.js +24 -26
- package/common/help.js +7 -12
- package/common/help.test.json +63 -8
- package/common/helpers/concept.js +10 -7
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +54 -62
- package/common/helpers.js +6 -5
- package/common/hierarchy.js +16 -24
- package/common/javascript.js +11 -18
- package/common/kirk.instance.json +584 -290
- package/common/kirk.js +5 -8
- package/common/length.instance.json +8834 -4757
- package/common/length.js +4 -8
- package/common/listener.js +48 -0
- package/common/listener.test.json +104 -0
- package/common/math.instance.json +425 -1187
- package/common/math.js +16 -20
- package/common/meta.js +23 -47
- package/common/nameable.instance.json +2 -0
- package/common/nameable.js +144 -0
- package/common/nameable.test.json +3191 -0
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +27 -31
- package/common/ordering.instance.json +366 -246
- package/common/ordering.js +80 -86
- package/common/people.instance.json +2074 -1022
- package/common/people.js +8 -13
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +53 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +11745 -6329
- package/common/pipboy.js +48 -59
- package/common/pokemon.instance.json +4226 -2081
- package/common/pokemon.js +7 -20
- package/common/pos.js +15 -13
- package/common/pressure.instance.json +2208 -1175
- package/common/pressure.js +4 -8
- package/common/properties.instance.json +131 -61
- package/common/properties.js +57 -134
- package/common/punctuation.js +15 -7
- package/common/reports.instance.json +1018 -530
- package/common/reports.js +77 -100
- package/common/reports.test.json +15623 -10458
- package/common/scorekeeper.js +18 -30
- package/common/sdefaults.js +16 -7
- package/common/sizeable.js +6 -10
- package/common/spock.instance.json +584 -290
- package/common/spock.js +5 -8
- package/common/stgame.js +19 -19
- package/common/stm.js +164 -27
- package/common/stm.test.json +1734 -1
- package/common/tell.js +14 -18
- package/common/temperature.instance.json +2271 -1222
- package/common/temperature.js +4 -8
- package/common/tester.js +15 -4
- package/common/testing.js +8 -12
- package/common/time.js +20 -25
- package/common/tokenize.js +5 -6
- package/common/ui.instance.json +459 -240
- package/common/ui.js +16 -22
- package/common/weight.instance.json +7646 -4026
- package/common/weight.js +4 -8
- package/common/yesno.js +5 -5
- package/main.js +14 -2
- package/package.json +28 -5
package/common/comparable.js
CHANGED
@@ -1,23 +1,26 @@
|
|
1
|
-
const {
|
1
|
+
const { knowledgeModule, where, Digraph } = require('./runtime').theprogrammablemind
|
2
2
|
const { defaultContextCheck } = require('./helpers')
|
3
3
|
const dialogues = require("./dialogues")
|
4
|
+
const concept = require("./concept")
|
4
5
|
const numbers = require("./numbers")
|
5
6
|
const comparable_tests = require('./comparable.test.json')
|
7
|
+
const comparable_instance = require('./comparable.instance.json')
|
6
8
|
|
7
|
-
|
9
|
+
|
10
|
+
let config = {
|
8
11
|
name: 'comparable',
|
9
12
|
operators: [
|
10
13
|
"([condition|])",
|
11
14
|
"(([condition/1]) <compare|> ([comparable]))",
|
12
15
|
"([highest])",
|
13
16
|
"([lowest])",
|
17
|
+
// "((comparable/*) <sortOrdering|>)",
|
14
18
|
],
|
15
19
|
bridges: [
|
16
20
|
{
|
17
21
|
id: "compare",
|
18
|
-
level: 0,
|
19
22
|
convolution: true,
|
20
|
-
before: ['
|
23
|
+
before: ['verb', 'articlePOS'],
|
21
24
|
// bridge: "{ ...after, comparison: append(before[0], after[0].comparison), modifiers: append([before[0].marker], after[0].modifiers), [before[0].marker]: before[0] }"
|
22
25
|
// bridge: "{ ...after, comparison: append([], before[0].marker, after[0].comparison) }"
|
23
26
|
bridge: "{ ...next(before[0]), property: after, postModifiers: append([after[0].marker], before[0].modifiers), [after[0].marker.id]: after[0] }"
|
@@ -26,55 +29,60 @@ let configStruct = {
|
|
26
29
|
{
|
27
30
|
id: "condition",
|
28
31
|
children: ['highest', 'lowest'],
|
29
|
-
level: 0,
|
30
32
|
bridge: "{ ...next(operator) }"
|
31
33
|
},
|
32
34
|
{
|
33
35
|
id: "comparable",
|
34
|
-
level: 0,
|
35
36
|
bridge: "{ ...next(operator) }"
|
36
37
|
},
|
37
38
|
{
|
38
39
|
id: "lowest",
|
39
|
-
level: 0,
|
40
40
|
bridge: "{ ...next(operator) }"
|
41
41
|
},
|
42
42
|
{
|
43
43
|
id: "highest",
|
44
|
-
level: 0,
|
45
44
|
bridge: "{ ...next(operator) }"
|
46
45
|
},
|
47
46
|
],
|
48
|
-
|
49
|
-
/*
|
50
|
-
generators: [
|
51
|
-
{
|
52
|
-
where: where(),
|
53
|
-
match: ({context}) => false && context.quantity,
|
54
|
-
apply: ({context, g}) => {
|
55
|
-
const countable = g({ ...context, quantity: undefined, number: context.quanity == 1 ? 'one' : 'many' })
|
56
|
-
return `${g(context.quantity)} ${countable}`
|
57
|
-
}
|
58
|
-
},
|
59
|
-
]
|
60
|
-
*/
|
61
47
|
};
|
62
48
|
|
63
|
-
const
|
64
|
-
|
65
|
-
|
66
|
-
|
49
|
+
const template = {
|
50
|
+
configs: [
|
51
|
+
"sort modifies ordering",
|
52
|
+
"ascending is a sort ordering",
|
53
|
+
"descending is a sort ordering",
|
54
|
+
{
|
55
|
+
operators: [
|
56
|
+
"((comparable/*) [sortOrdering] (<sort_ordering/*))",
|
57
|
+
],
|
58
|
+
bridges: [
|
59
|
+
{
|
60
|
+
id: 'sortOrdering',
|
61
|
+
convolution: true,
|
62
|
+
isA: ['adjective'],
|
63
|
+
localHierarchy: [['unknown', 'comparable']],
|
64
|
+
bridge: "{ ...next(before[0]), ordering: after[0].value, sortOrder: after[0], postModifiers: append(['sortOrder'], before[0].postModifiers) }",
|
65
|
+
},
|
66
|
+
],
|
67
|
+
}
|
68
|
+
],
|
67
69
|
}
|
68
70
|
|
69
71
|
knowledgeModule({
|
72
|
+
config,
|
73
|
+
includes: [dialogues, numbers, concept],
|
74
|
+
template: {
|
75
|
+
template,
|
76
|
+
instance: comparable_instance
|
77
|
+
},
|
78
|
+
|
70
79
|
module,
|
71
80
|
description: 'Comparable things',
|
72
|
-
createConfig,
|
73
81
|
test: {
|
74
82
|
name: './comparable.test.json',
|
75
83
|
contents: comparable_tests,
|
76
84
|
checks: {
|
77
|
-
|
78
|
-
|
85
|
+
context: [...defaultContextCheck, 'ordering'],
|
86
|
+
},
|
79
87
|
},
|
80
88
|
})
|
@@ -63,6 +63,9 @@
|
|
63
63
|
},
|
64
64
|
"text": "highest comparable",
|
65
65
|
"topLevel": true,
|
66
|
+
"types": [
|
67
|
+
"highest"
|
68
|
+
],
|
66
69
|
"value": "highest",
|
67
70
|
"word": "highest"
|
68
71
|
}
|
@@ -99,6 +102,10 @@
|
|
99
102
|
[
|
100
103
|
"comparable",
|
101
104
|
0
|
105
|
+
],
|
106
|
+
[
|
107
|
+
"compare",
|
108
|
+
0
|
102
109
|
]
|
103
110
|
]
|
104
111
|
},
|
@@ -119,29 +126,40 @@
|
|
119
126
|
},
|
120
127
|
"objects": {
|
121
128
|
"nameToUUID": {
|
129
|
+
"articles": "articles2",
|
122
130
|
"comparable": "comparable1",
|
123
131
|
"dialogues": "dialogues2",
|
132
|
+
"evaluate": "evaluate2",
|
124
133
|
"gdefaults": "gdefaults2",
|
125
134
|
"meta": "meta2",
|
135
|
+
"negation": "negation2",
|
126
136
|
"numbers": "numbers2",
|
127
137
|
"pos": "pos2",
|
128
138
|
"punctuation": "punctuation2",
|
129
139
|
"sdefaults": "sdefaults2",
|
130
|
-
"stm": "stm2"
|
140
|
+
"stm": "stm2",
|
141
|
+
"tokenize": "tokenize2"
|
131
142
|
},
|
132
143
|
"namespaced": {
|
144
|
+
"articles2": {
|
145
|
+
},
|
133
146
|
"comparable1": {
|
134
147
|
},
|
135
148
|
"dialogues2": {
|
149
|
+
"idSuffix": "",
|
136
150
|
"mentioned": [
|
137
151
|
],
|
138
152
|
"variables": {
|
139
153
|
}
|
140
154
|
},
|
155
|
+
"evaluate2": {
|
156
|
+
},
|
141
157
|
"gdefaults2": {
|
142
158
|
},
|
143
159
|
"meta2": {
|
144
160
|
},
|
161
|
+
"negation2": {
|
162
|
+
},
|
145
163
|
"numbers2": {
|
146
164
|
},
|
147
165
|
"pos2": {
|
@@ -155,6 +173,8 @@
|
|
155
173
|
],
|
156
174
|
"variables": {
|
157
175
|
}
|
176
|
+
},
|
177
|
+
"tokenize2": {
|
158
178
|
}
|
159
179
|
},
|
160
180
|
"processed": [
|
@@ -207,6 +227,9 @@
|
|
207
227
|
},
|
208
228
|
"text": "highest comparable",
|
209
229
|
"topLevel": true,
|
230
|
+
"types": [
|
231
|
+
"highest"
|
232
|
+
],
|
210
233
|
"value": "highest",
|
211
234
|
"word": "highest"
|
212
235
|
},
|
@@ -294,6 +317,9 @@
|
|
294
317
|
},
|
295
318
|
"text": "lowest comparable",
|
296
319
|
"topLevel": true,
|
320
|
+
"types": [
|
321
|
+
"lowest"
|
322
|
+
],
|
297
323
|
"value": "lowest",
|
298
324
|
"word": "lowest"
|
299
325
|
}
|
@@ -330,6 +356,10 @@
|
|
330
356
|
[
|
331
357
|
"comparable",
|
332
358
|
0
|
359
|
+
],
|
360
|
+
[
|
361
|
+
"compare",
|
362
|
+
0
|
333
363
|
]
|
334
364
|
]
|
335
365
|
},
|
@@ -350,29 +380,40 @@
|
|
350
380
|
},
|
351
381
|
"objects": {
|
352
382
|
"nameToUUID": {
|
383
|
+
"articles": "articles2",
|
353
384
|
"comparable": "comparable1",
|
354
385
|
"dialogues": "dialogues2",
|
386
|
+
"evaluate": "evaluate2",
|
355
387
|
"gdefaults": "gdefaults2",
|
356
388
|
"meta": "meta2",
|
389
|
+
"negation": "negation2",
|
357
390
|
"numbers": "numbers2",
|
358
391
|
"pos": "pos2",
|
359
392
|
"punctuation": "punctuation2",
|
360
393
|
"sdefaults": "sdefaults2",
|
361
|
-
"stm": "stm2"
|
394
|
+
"stm": "stm2",
|
395
|
+
"tokenize": "tokenize2"
|
362
396
|
},
|
363
397
|
"namespaced": {
|
398
|
+
"articles2": {
|
399
|
+
},
|
364
400
|
"comparable1": {
|
365
401
|
},
|
366
402
|
"dialogues2": {
|
403
|
+
"idSuffix": "",
|
367
404
|
"mentioned": [
|
368
405
|
],
|
369
406
|
"variables": {
|
370
407
|
}
|
371
408
|
},
|
409
|
+
"evaluate2": {
|
410
|
+
},
|
372
411
|
"gdefaults2": {
|
373
412
|
},
|
374
413
|
"meta2": {
|
375
414
|
},
|
415
|
+
"negation2": {
|
416
|
+
},
|
376
417
|
"numbers2": {
|
377
418
|
},
|
378
419
|
"pos2": {
|
@@ -386,6 +427,8 @@
|
|
386
427
|
],
|
387
428
|
"variables": {
|
388
429
|
}
|
430
|
+
},
|
431
|
+
"tokenize2": {
|
389
432
|
}
|
390
433
|
},
|
391
434
|
"processed": [
|
@@ -438,6 +481,9 @@
|
|
438
481
|
},
|
439
482
|
"text": "lowest comparable",
|
440
483
|
"topLevel": true,
|
484
|
+
"types": [
|
485
|
+
"lowest"
|
486
|
+
],
|
441
487
|
"value": "lowest",
|
442
488
|
"word": "lowest"
|
443
489
|
},
|
@@ -460,5 +506,395 @@
|
|
460
506
|
"responses": [
|
461
507
|
""
|
462
508
|
]
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"associations": [
|
512
|
+
[
|
513
|
+
[
|
514
|
+
"comparable",
|
515
|
+
0
|
516
|
+
],
|
517
|
+
[
|
518
|
+
"descending",
|
519
|
+
0
|
520
|
+
]
|
521
|
+
]
|
522
|
+
],
|
523
|
+
"config": {
|
524
|
+
},
|
525
|
+
"contexts": [
|
526
|
+
{
|
527
|
+
"dead": true,
|
528
|
+
"default": true,
|
529
|
+
"descending": {
|
530
|
+
"default": true,
|
531
|
+
"level": 0,
|
532
|
+
"marker": "descending",
|
533
|
+
"range": {
|
534
|
+
"end": 20,
|
535
|
+
"start": 11
|
536
|
+
},
|
537
|
+
"text": "descending",
|
538
|
+
"value": "descending",
|
539
|
+
"word": "descending"
|
540
|
+
},
|
541
|
+
"level": 2,
|
542
|
+
"marker": "comparable",
|
543
|
+
"ordering": "descending",
|
544
|
+
"postModifiers": [
|
545
|
+
"descending"
|
546
|
+
],
|
547
|
+
"range": {
|
548
|
+
"end": 20,
|
549
|
+
"start": 0
|
550
|
+
},
|
551
|
+
"text": "comparable descending",
|
552
|
+
"topLevel": true,
|
553
|
+
"types": [
|
554
|
+
"comparable"
|
555
|
+
],
|
556
|
+
"value": "comparable",
|
557
|
+
"word": "comparable"
|
558
|
+
}
|
559
|
+
],
|
560
|
+
"generatedParenthesized": [
|
561
|
+
""
|
562
|
+
],
|
563
|
+
"metadata": {
|
564
|
+
"opChoices": [
|
565
|
+
{
|
566
|
+
"counter": 1,
|
567
|
+
"op": [
|
568
|
+
"comparable",
|
569
|
+
0
|
570
|
+
],
|
571
|
+
"ops": [
|
572
|
+
[
|
573
|
+
"comparable",
|
574
|
+
0
|
575
|
+
],
|
576
|
+
[
|
577
|
+
"descending",
|
578
|
+
0
|
579
|
+
]
|
580
|
+
]
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"counter": 2,
|
584
|
+
"op": [
|
585
|
+
"descending",
|
586
|
+
0
|
587
|
+
],
|
588
|
+
"ops": [
|
589
|
+
[
|
590
|
+
"descending",
|
591
|
+
0
|
592
|
+
]
|
593
|
+
]
|
594
|
+
}
|
595
|
+
]
|
596
|
+
},
|
597
|
+
"objects": {
|
598
|
+
"nameToUUID": {
|
599
|
+
"articles": "articles2",
|
600
|
+
"comparable": "comparable1",
|
601
|
+
"dialogues": "dialogues2",
|
602
|
+
"evaluate": "evaluate2",
|
603
|
+
"gdefaults": "gdefaults2",
|
604
|
+
"meta": "meta2",
|
605
|
+
"negation": "negation2",
|
606
|
+
"numbers": "numbers2",
|
607
|
+
"pos": "pos2",
|
608
|
+
"punctuation": "punctuation2",
|
609
|
+
"sdefaults": "sdefaults2",
|
610
|
+
"stm": "stm2",
|
611
|
+
"tokenize": "tokenize2"
|
612
|
+
},
|
613
|
+
"namespaced": {
|
614
|
+
"articles2": {
|
615
|
+
},
|
616
|
+
"comparable1": {
|
617
|
+
},
|
618
|
+
"dialogues2": {
|
619
|
+
"idSuffix": "",
|
620
|
+
"mentioned": [
|
621
|
+
],
|
622
|
+
"variables": {
|
623
|
+
}
|
624
|
+
},
|
625
|
+
"evaluate2": {
|
626
|
+
},
|
627
|
+
"gdefaults2": {
|
628
|
+
},
|
629
|
+
"meta2": {
|
630
|
+
},
|
631
|
+
"negation2": {
|
632
|
+
},
|
633
|
+
"numbers2": {
|
634
|
+
},
|
635
|
+
"pos2": {
|
636
|
+
},
|
637
|
+
"punctuation2": {
|
638
|
+
},
|
639
|
+
"sdefaults2": {
|
640
|
+
},
|
641
|
+
"stm2": {
|
642
|
+
"mentioned": [
|
643
|
+
],
|
644
|
+
"variables": {
|
645
|
+
}
|
646
|
+
},
|
647
|
+
"tokenize2": {
|
648
|
+
}
|
649
|
+
},
|
650
|
+
"processed": [
|
651
|
+
{
|
652
|
+
"context": {
|
653
|
+
"dead": true,
|
654
|
+
"default": true,
|
655
|
+
"descending": {
|
656
|
+
"default": true,
|
657
|
+
"level": 0,
|
658
|
+
"marker": "descending",
|
659
|
+
"range": {
|
660
|
+
"end": 20,
|
661
|
+
"start": 11
|
662
|
+
},
|
663
|
+
"text": "descending",
|
664
|
+
"value": "descending",
|
665
|
+
"word": "descending"
|
666
|
+
},
|
667
|
+
"level": 2,
|
668
|
+
"marker": "comparable",
|
669
|
+
"ordering": "descending",
|
670
|
+
"postModifiers": [
|
671
|
+
"descending"
|
672
|
+
],
|
673
|
+
"range": {
|
674
|
+
"end": 20,
|
675
|
+
"start": 0
|
676
|
+
},
|
677
|
+
"text": "comparable descending",
|
678
|
+
"topLevel": true,
|
679
|
+
"types": [
|
680
|
+
"comparable"
|
681
|
+
],
|
682
|
+
"value": "comparable",
|
683
|
+
"word": "comparable"
|
684
|
+
},
|
685
|
+
"generatedParenthesized": "",
|
686
|
+
"paraphrases": "comparable descending",
|
687
|
+
"paraphrasesParenthesized": "((comparable) (descending))",
|
688
|
+
"responses": [
|
689
|
+
""
|
690
|
+
]
|
691
|
+
}
|
692
|
+
]
|
693
|
+
},
|
694
|
+
"paraphrases": [
|
695
|
+
"comparable descending"
|
696
|
+
],
|
697
|
+
"paraphrasesParenthesized": [
|
698
|
+
"((comparable) (descending))"
|
699
|
+
],
|
700
|
+
"query": "comparable descending",
|
701
|
+
"responses": [
|
702
|
+
""
|
703
|
+
]
|
704
|
+
},
|
705
|
+
{
|
706
|
+
"associations": [
|
707
|
+
[
|
708
|
+
[
|
709
|
+
"ascending",
|
710
|
+
0
|
711
|
+
],
|
712
|
+
[
|
713
|
+
"comparable",
|
714
|
+
0
|
715
|
+
]
|
716
|
+
]
|
717
|
+
],
|
718
|
+
"config": {
|
719
|
+
},
|
720
|
+
"contexts": [
|
721
|
+
{
|
722
|
+
"ascending": {
|
723
|
+
"default": true,
|
724
|
+
"level": 0,
|
725
|
+
"marker": "ascending",
|
726
|
+
"range": {
|
727
|
+
"end": 19,
|
728
|
+
"start": 11
|
729
|
+
},
|
730
|
+
"text": "ascending",
|
731
|
+
"value": "ascending",
|
732
|
+
"word": "ascending"
|
733
|
+
},
|
734
|
+
"dead": true,
|
735
|
+
"default": true,
|
736
|
+
"level": 2,
|
737
|
+
"marker": "comparable",
|
738
|
+
"ordering": "ascending",
|
739
|
+
"postModifiers": [
|
740
|
+
"ascending"
|
741
|
+
],
|
742
|
+
"range": {
|
743
|
+
"end": 19,
|
744
|
+
"start": 0
|
745
|
+
},
|
746
|
+
"text": "comparable ascending",
|
747
|
+
"topLevel": true,
|
748
|
+
"types": [
|
749
|
+
"comparable"
|
750
|
+
],
|
751
|
+
"value": "comparable",
|
752
|
+
"word": "comparable"
|
753
|
+
}
|
754
|
+
],
|
755
|
+
"generatedParenthesized": [
|
756
|
+
""
|
757
|
+
],
|
758
|
+
"metadata": {
|
759
|
+
"opChoices": [
|
760
|
+
{
|
761
|
+
"counter": 1,
|
762
|
+
"op": [
|
763
|
+
"comparable",
|
764
|
+
0
|
765
|
+
],
|
766
|
+
"ops": [
|
767
|
+
[
|
768
|
+
"ascending",
|
769
|
+
0
|
770
|
+
],
|
771
|
+
[
|
772
|
+
"comparable",
|
773
|
+
0
|
774
|
+
]
|
775
|
+
]
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"counter": 2,
|
779
|
+
"op": [
|
780
|
+
"ascending",
|
781
|
+
0
|
782
|
+
],
|
783
|
+
"ops": [
|
784
|
+
[
|
785
|
+
"ascending",
|
786
|
+
0
|
787
|
+
]
|
788
|
+
]
|
789
|
+
}
|
790
|
+
]
|
791
|
+
},
|
792
|
+
"objects": {
|
793
|
+
"nameToUUID": {
|
794
|
+
"articles": "articles2",
|
795
|
+
"comparable": "comparable1",
|
796
|
+
"dialogues": "dialogues2",
|
797
|
+
"evaluate": "evaluate2",
|
798
|
+
"gdefaults": "gdefaults2",
|
799
|
+
"meta": "meta2",
|
800
|
+
"negation": "negation2",
|
801
|
+
"numbers": "numbers2",
|
802
|
+
"pos": "pos2",
|
803
|
+
"punctuation": "punctuation2",
|
804
|
+
"sdefaults": "sdefaults2",
|
805
|
+
"stm": "stm2",
|
806
|
+
"tokenize": "tokenize2"
|
807
|
+
},
|
808
|
+
"namespaced": {
|
809
|
+
"articles2": {
|
810
|
+
},
|
811
|
+
"comparable1": {
|
812
|
+
},
|
813
|
+
"dialogues2": {
|
814
|
+
"idSuffix": "",
|
815
|
+
"mentioned": [
|
816
|
+
],
|
817
|
+
"variables": {
|
818
|
+
}
|
819
|
+
},
|
820
|
+
"evaluate2": {
|
821
|
+
},
|
822
|
+
"gdefaults2": {
|
823
|
+
},
|
824
|
+
"meta2": {
|
825
|
+
},
|
826
|
+
"negation2": {
|
827
|
+
},
|
828
|
+
"numbers2": {
|
829
|
+
},
|
830
|
+
"pos2": {
|
831
|
+
},
|
832
|
+
"punctuation2": {
|
833
|
+
},
|
834
|
+
"sdefaults2": {
|
835
|
+
},
|
836
|
+
"stm2": {
|
837
|
+
"mentioned": [
|
838
|
+
],
|
839
|
+
"variables": {
|
840
|
+
}
|
841
|
+
},
|
842
|
+
"tokenize2": {
|
843
|
+
}
|
844
|
+
},
|
845
|
+
"processed": [
|
846
|
+
{
|
847
|
+
"context": {
|
848
|
+
"ascending": {
|
849
|
+
"default": true,
|
850
|
+
"level": 0,
|
851
|
+
"marker": "ascending",
|
852
|
+
"range": {
|
853
|
+
"end": 19,
|
854
|
+
"start": 11
|
855
|
+
},
|
856
|
+
"text": "ascending",
|
857
|
+
"value": "ascending",
|
858
|
+
"word": "ascending"
|
859
|
+
},
|
860
|
+
"dead": true,
|
861
|
+
"default": true,
|
862
|
+
"level": 2,
|
863
|
+
"marker": "comparable",
|
864
|
+
"ordering": "ascending",
|
865
|
+
"postModifiers": [
|
866
|
+
"ascending"
|
867
|
+
],
|
868
|
+
"range": {
|
869
|
+
"end": 19,
|
870
|
+
"start": 0
|
871
|
+
},
|
872
|
+
"text": "comparable ascending",
|
873
|
+
"topLevel": true,
|
874
|
+
"types": [
|
875
|
+
"comparable"
|
876
|
+
],
|
877
|
+
"value": "comparable",
|
878
|
+
"word": "comparable"
|
879
|
+
},
|
880
|
+
"generatedParenthesized": "",
|
881
|
+
"paraphrases": "comparable ascending",
|
882
|
+
"paraphrasesParenthesized": "((comparable) (ascending))",
|
883
|
+
"responses": [
|
884
|
+
""
|
885
|
+
]
|
886
|
+
}
|
887
|
+
]
|
888
|
+
},
|
889
|
+
"paraphrases": [
|
890
|
+
"comparable ascending"
|
891
|
+
],
|
892
|
+
"paraphrasesParenthesized": [
|
893
|
+
"((comparable) (ascending))"
|
894
|
+
],
|
895
|
+
"query": "comparable ascending",
|
896
|
+
"responses": [
|
897
|
+
""
|
898
|
+
]
|
463
899
|
}
|
464
900
|
]
|