-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlangfeatures.py
95 lines (93 loc) · 4.42 KB
/
langfeatures.py
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
# Copyright (c) 2024. [email protected]
features = {
0: [-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3.14, 10, 12],
1: [
'sort', 'switch', 'encode', 'recode', 'clarify', 'expect',
'handle', 'compile', 'write', 'sing', 'cut', 'define',
'shrink', 'destroy', 'construct', 'compact', 'invent', 'rearrange', 'notify',
'fire', 'check', 'test', 'process', 'interpret', 'conduct', 'implement', 'wire', 'turn',
'misuse', 'use', 'access', 'invert', 'rotate', 'reverse', 'correct', 'repair', 'explode',
'explain', 'count', 'correct', 'identify', 'provide', 'position', 'print', 'expose', 'collect',
'include', 'exclude', 'recognize', 'memorize', 'adapt', 'cross', 'mix', 'extract', 'insert',
'crop', 'compact', 'enchance', 'manufacture', 'reproduce', 'unmask', 'hide', 'unhide',
'kill', 'infect', 'mask', 'notice', 'rule', 'avoid', 'read', 'write', 'speak', 'summarize',
],
2: [
'name', 'order', 'film', 'doctor', 'rule', 'vehicle', 'reactor', 'hub', 'structure', 'scheme',
'plan', 'tool', 'chain', 'result', 'bulling',
'crime', 'suite', 'pack', 'program', 'project', 'system', 'device', 'component',
'item', 'child', 'sign', 'family', 'place', 'person', 'name', 'key', 'value', 'explosion',
'number', 'signer', 'prison', 'cube', 'circle', 'color', 'weight', 'fire',
'letter', 'char', 'meaning', 'definition', 'component', 'element', 'material', 'army',
'force', 'brigade', 'engine', 'system', 'engineer', 'wire',
'police', 'price', 'length', 'mass', 'receiver', 'gang', 'band', 'criminal',
'sender', 'limiter', 'interceptor', 'device', 'voider', 'detector',
'cell', 'console', 'interface', 'adapter', 'instruction',
'parent', 'team', 'command', 'union', 'mask', 'generation', 'parameter', 'hostage', 'leet', 'avenger',
'policy', 'law', 'lawyer', 'entertainment', 'warfare', 'war', 'peace',
'full', 'partial', 'complex', 'unresolved', 'resolved', 'solved'
],
3: [
'old', 'busy', 'homeless', 'fast', 'throttled', 'slow', 'clean', 'exact', 'temporary', 'new', 'fixed', 'mixed',
'inclusive', 'exclusive', 'different', 'far', 'near', 'same', 'restartable', 'auto',
'periodically', 'unmanned', 'toggled', 'optimized', 'instructed',
'bad', 'good', 'flamable', 'expandable', 'compact', 'personal', 'unnecessary', 'necessary',
'noticed', 'marked', 'unfixed', 'grouped', 'delivered', 'wired', 'possible', 'unavailable', 'organized',
'available', 'assigned', 'warm', 'cold', 'selected', 'unselected', 'unassigned', 'undelivered',
'accurate', 'inaccurate', 'short', 'long', 'rooted', 'identified', 'based',
'working', 'lawyered', 'unlawyered', 'legal', 'lowest', 'highest', 'centered', 'moded', 'biased'
],
# v 1 - no axis 0
4: ['do', "do not", "let", "try", "is", "is not", "are", "can", "should", "would", "will", "shall"],
# , "aren't", "wasn't""can't", "shouldn't", "wouldn't", "won't",
5: ['your', 'my', 'their', 'feature_x'], # 'those',
6: ['me', 'you', 'index', 'we', 'they', 'other', 'noone'],
7: ['as', 'like', 'by', 'per', 'done'],
8: [
'inside', 'outside', 'in-outed', 'within', 'between', 'around', 'through', 'over', 'under',
'above', 'below', 'into', 'front', 'back', 'middle', 'up', 'down', 'left', 'right', 'near'
],
9: ['to', 'from', 'out', 'in', 'on', 'off', 'over', 'under', 'around', 'through', 'over', 'under'],
10: ['on', 'off', 'toggle', 'pick', 'select'],
11: {
'dev': [
'ice',
'elop'
],
'mirror': [
'ed', 'ing',
'red',
],
'plan': [
'clear', 'set',
'intelligence', 'effort',
'task', 'link', '-aware', 'ware'
],
'suspect': [
'dev', 'plan', 'clear', 'set',
'intelligence', 'effort',
'task', 'link', '-aware', 'ware'
],
'counter-': [
'dev', 'plan', 'face', 'terrorism', 'reset', 'clear',
'intelligence', 'effort', 'job', 'help',
'task', 'evade', 'stealth', 'aware', 'ware'
],
'less': [
'wire'
],
'un': [
'flamable',
'reliable'
'piloted',
'manned',
'known'
],
'in': [
'accurate'
],
'il': [
'legal'
]
}
}