glitchlings 1.0.0__cp313-cp313-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- glitchlings/__init__.py +101 -0
- glitchlings/__main__.py +8 -0
- glitchlings/_corruption_engine/__init__.py +12 -0
- glitchlings/_corruption_engine.cp313-win_amd64.pyd +0 -0
- glitchlings/assets/__init__.py +180 -0
- glitchlings/assets/apostrofae_pairs.json +32 -0
- glitchlings/assets/ekkokin_homophones.json +2014 -0
- glitchlings/assets/hokey_assets.json +193 -0
- glitchlings/assets/lexemes/academic.json +1049 -0
- glitchlings/assets/lexemes/colors.json +1333 -0
- glitchlings/assets/lexemes/corporate.json +716 -0
- glitchlings/assets/lexemes/cyberpunk.json +22 -0
- glitchlings/assets/lexemes/lovecraftian.json +23 -0
- glitchlings/assets/lexemes/synonyms.json +3354 -0
- glitchlings/assets/mim1c_homoglyphs.json.gz.b64 +1064 -0
- glitchlings/assets/ocr_confusions.tsv +30 -0
- glitchlings/assets/pipeline_assets.json +29 -0
- glitchlings/attack/__init__.py +184 -0
- glitchlings/attack/analysis.py +1321 -0
- glitchlings/attack/core.py +819 -0
- glitchlings/attack/core_execution.py +378 -0
- glitchlings/attack/core_planning.py +612 -0
- glitchlings/attack/encode.py +114 -0
- glitchlings/attack/metrics.py +211 -0
- glitchlings/attack/metrics_dispatch.py +70 -0
- glitchlings/attack/tokenization.py +338 -0
- glitchlings/attack/tokenizer_metrics.py +373 -0
- glitchlings/auggie.py +285 -0
- glitchlings/compat/__init__.py +9 -0
- glitchlings/compat/loaders.py +355 -0
- glitchlings/compat/types.py +41 -0
- glitchlings/conf/__init__.py +39 -0
- glitchlings/conf/loaders.py +331 -0
- glitchlings/conf/schema.py +156 -0
- glitchlings/conf/types.py +72 -0
- glitchlings/config.toml +2 -0
- glitchlings/constants.py +139 -0
- glitchlings/dev/__init__.py +3 -0
- glitchlings/dev/docs.py +45 -0
- glitchlings/dlc/__init__.py +21 -0
- glitchlings/dlc/_shared.py +300 -0
- glitchlings/dlc/gutenberg.py +400 -0
- glitchlings/dlc/huggingface.py +68 -0
- glitchlings/dlc/langchain.py +147 -0
- glitchlings/dlc/nemo.py +283 -0
- glitchlings/dlc/prime.py +215 -0
- glitchlings/dlc/pytorch.py +98 -0
- glitchlings/dlc/pytorch_lightning.py +173 -0
- glitchlings/internal/__init__.py +16 -0
- glitchlings/internal/rust.py +159 -0
- glitchlings/internal/rust_ffi.py +599 -0
- glitchlings/main.py +426 -0
- glitchlings/protocols.py +91 -0
- glitchlings/runtime_config.py +24 -0
- glitchlings/util/__init__.py +41 -0
- glitchlings/util/adapters.py +65 -0
- glitchlings/util/keyboards.py +508 -0
- glitchlings/util/transcripts.py +108 -0
- glitchlings/zoo/__init__.py +161 -0
- glitchlings/zoo/assets/__init__.py +29 -0
- glitchlings/zoo/core.py +852 -0
- glitchlings/zoo/core_execution.py +154 -0
- glitchlings/zoo/core_planning.py +451 -0
- glitchlings/zoo/corrupt_dispatch.py +291 -0
- glitchlings/zoo/hokey.py +139 -0
- glitchlings/zoo/jargoyle.py +301 -0
- glitchlings/zoo/mim1c.py +269 -0
- glitchlings/zoo/pedant/__init__.py +109 -0
- glitchlings/zoo/pedant/core.py +99 -0
- glitchlings/zoo/pedant/forms.py +50 -0
- glitchlings/zoo/pedant/stones.py +83 -0
- glitchlings/zoo/redactyl.py +94 -0
- glitchlings/zoo/rng.py +280 -0
- glitchlings/zoo/rushmore.py +416 -0
- glitchlings/zoo/scannequin.py +370 -0
- glitchlings/zoo/transforms.py +331 -0
- glitchlings/zoo/typogre.py +194 -0
- glitchlings/zoo/validation.py +643 -0
- glitchlings/zoo/wherewolf.py +120 -0
- glitchlings/zoo/zeedub.py +165 -0
- glitchlings-1.0.0.dist-info/METADATA +404 -0
- glitchlings-1.0.0.dist-info/RECORD +86 -0
- glitchlings-1.0.0.dist-info/WHEEL +5 -0
- glitchlings-1.0.0.dist-info/entry_points.txt +3 -0
- glitchlings-1.0.0.dist-info/licenses/LICENSE +201 -0
- glitchlings-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lexical_prior": {
|
|
3
|
+
"so": 0.92,
|
|
4
|
+
"no": 0.89,
|
|
5
|
+
"go": 0.72,
|
|
6
|
+
"yeah": 0.86,
|
|
7
|
+
"yay": 0.81,
|
|
8
|
+
"ya": 0.7,
|
|
9
|
+
"hey": 0.66,
|
|
10
|
+
"okay": 0.68,
|
|
11
|
+
"ok": 0.64,
|
|
12
|
+
"cool": 0.78,
|
|
13
|
+
"omg": 0.74,
|
|
14
|
+
"wow": 0.88,
|
|
15
|
+
"wee": 0.62,
|
|
16
|
+
"woo": 0.69,
|
|
17
|
+
"woohoo": 0.74,
|
|
18
|
+
"whoa": 0.71,
|
|
19
|
+
"woah": 0.7,
|
|
20
|
+
"yayyy": 0.75,
|
|
21
|
+
"yayyyy": 0.76,
|
|
22
|
+
"yas": 0.79,
|
|
23
|
+
"yass": 0.8,
|
|
24
|
+
"yaaas": 0.82,
|
|
25
|
+
"please": 0.53,
|
|
26
|
+
"pleaseee": 0.57,
|
|
27
|
+
"pleaseeee": 0.6,
|
|
28
|
+
"pleaseeeee": 0.63,
|
|
29
|
+
"lol": 0.83,
|
|
30
|
+
"lmao": 0.65,
|
|
31
|
+
"omggg": 0.75,
|
|
32
|
+
"omgggg": 0.76,
|
|
33
|
+
"squee": 0.64,
|
|
34
|
+
"hahaha": 0.6,
|
|
35
|
+
"haha": 0.56,
|
|
36
|
+
"really": 0.58,
|
|
37
|
+
"very": 0.49,
|
|
38
|
+
"love": 0.55,
|
|
39
|
+
"cute": 0.52,
|
|
40
|
+
"nice": 0.47,
|
|
41
|
+
"sweet": 0.45,
|
|
42
|
+
"yayness": 0.44,
|
|
43
|
+
"ugh": 0.5,
|
|
44
|
+
"aww": 0.61,
|
|
45
|
+
"yess": 0.81,
|
|
46
|
+
"yes": 0.9,
|
|
47
|
+
"pls": 0.48,
|
|
48
|
+
"pleeeease": 0.62,
|
|
49
|
+
"nooo": 0.88,
|
|
50
|
+
"noooo": 0.89,
|
|
51
|
+
"dang": 0.41,
|
|
52
|
+
"geez": 0.39,
|
|
53
|
+
"danggg": 0.44,
|
|
54
|
+
"dangit": 0.38,
|
|
55
|
+
"sick": 0.35,
|
|
56
|
+
"epic": 0.37,
|
|
57
|
+
"rad": 0.5,
|
|
58
|
+
"goal": 0.56,
|
|
59
|
+
"great": 0.46,
|
|
60
|
+
"awesome": 0.51,
|
|
61
|
+
"amazing": 0.52,
|
|
62
|
+
"perfect": 0.49,
|
|
63
|
+
"fantastic": 0.5,
|
|
64
|
+
"stellar": 0.48,
|
|
65
|
+
"yippee": 0.67,
|
|
66
|
+
"stoked": 0.48,
|
|
67
|
+
"yikes": 0.43,
|
|
68
|
+
"gosh": 0.41,
|
|
69
|
+
"heck": 0.36
|
|
70
|
+
},
|
|
71
|
+
"interjections": [
|
|
72
|
+
"wow",
|
|
73
|
+
"omg",
|
|
74
|
+
"hey",
|
|
75
|
+
"ugh",
|
|
76
|
+
"yay",
|
|
77
|
+
"yayyy",
|
|
78
|
+
"yayyyy",
|
|
79
|
+
"woo",
|
|
80
|
+
"woohoo",
|
|
81
|
+
"whoa",
|
|
82
|
+
"woah",
|
|
83
|
+
"whooo",
|
|
84
|
+
"ah",
|
|
85
|
+
"aw",
|
|
86
|
+
"aww",
|
|
87
|
+
"hmm",
|
|
88
|
+
"huh",
|
|
89
|
+
"yo",
|
|
90
|
+
"yikes",
|
|
91
|
+
"gah",
|
|
92
|
+
"phew",
|
|
93
|
+
"sheesh"
|
|
94
|
+
],
|
|
95
|
+
"intensifiers": [
|
|
96
|
+
"so",
|
|
97
|
+
"very",
|
|
98
|
+
"really",
|
|
99
|
+
"super",
|
|
100
|
+
"mega",
|
|
101
|
+
"ultra",
|
|
102
|
+
"too",
|
|
103
|
+
"way",
|
|
104
|
+
"crazy",
|
|
105
|
+
"insanely",
|
|
106
|
+
"totally",
|
|
107
|
+
"extremely",
|
|
108
|
+
"seriously",
|
|
109
|
+
"absolutely",
|
|
110
|
+
"completely",
|
|
111
|
+
"entirely",
|
|
112
|
+
"utterly",
|
|
113
|
+
"hella",
|
|
114
|
+
"wicked",
|
|
115
|
+
"truly"
|
|
116
|
+
],
|
|
117
|
+
"evaluatives": [
|
|
118
|
+
"cool",
|
|
119
|
+
"great",
|
|
120
|
+
"awesome",
|
|
121
|
+
"amazing",
|
|
122
|
+
"perfect",
|
|
123
|
+
"nice",
|
|
124
|
+
"sweet",
|
|
125
|
+
"lovely",
|
|
126
|
+
"loving",
|
|
127
|
+
"silly",
|
|
128
|
+
"wild",
|
|
129
|
+
"fun",
|
|
130
|
+
"funny",
|
|
131
|
+
"adorable",
|
|
132
|
+
"cute",
|
|
133
|
+
"fantastic",
|
|
134
|
+
"fabulous",
|
|
135
|
+
"brilliant",
|
|
136
|
+
"stellar",
|
|
137
|
+
"rad",
|
|
138
|
+
"epic",
|
|
139
|
+
"delightful",
|
|
140
|
+
"gorgeous"
|
|
141
|
+
],
|
|
142
|
+
"positive_lexicon": [
|
|
143
|
+
"love",
|
|
144
|
+
"loved",
|
|
145
|
+
"loving",
|
|
146
|
+
"like",
|
|
147
|
+
"liked",
|
|
148
|
+
"awesome",
|
|
149
|
+
"amazing",
|
|
150
|
+
"yay",
|
|
151
|
+
"great",
|
|
152
|
+
"good",
|
|
153
|
+
"fun",
|
|
154
|
+
"funny",
|
|
155
|
+
"blessed",
|
|
156
|
+
"excited",
|
|
157
|
+
"cool",
|
|
158
|
+
"best",
|
|
159
|
+
"beautiful",
|
|
160
|
+
"happy",
|
|
161
|
+
"happiest",
|
|
162
|
+
"joy",
|
|
163
|
+
"joyful",
|
|
164
|
+
"thrilled",
|
|
165
|
+
"ecstatic",
|
|
166
|
+
"stoked",
|
|
167
|
+
"pumped",
|
|
168
|
+
"glad"
|
|
169
|
+
],
|
|
170
|
+
"negative_lexicon": [
|
|
171
|
+
"bad",
|
|
172
|
+
"sad",
|
|
173
|
+
"angry",
|
|
174
|
+
"annoyed",
|
|
175
|
+
"mad",
|
|
176
|
+
"terrible",
|
|
177
|
+
"awful",
|
|
178
|
+
"hate",
|
|
179
|
+
"hated",
|
|
180
|
+
"crying",
|
|
181
|
+
"hurt",
|
|
182
|
+
"tired",
|
|
183
|
+
"worst",
|
|
184
|
+
"ugh",
|
|
185
|
+
"nope",
|
|
186
|
+
"upset",
|
|
187
|
+
"frustrated",
|
|
188
|
+
"drained",
|
|
189
|
+
"exhausted",
|
|
190
|
+
"bummed",
|
|
191
|
+
"grumpy"
|
|
192
|
+
]
|
|
193
|
+
}
|