lark_interface
LarkStuff
Utility class for leveraging lark as a front-end syntax for specifying grammars.
This class provides functionality to convert Lark grammars into genlm_grammar format, handling various features and edge cases in the conversion process.
Attributes:
| Name | Type | Description |
|---|---|---|
raw_grammar |
The original Lark grammar string |
|
terminals |
Terminal symbols from the Lark grammar |
|
ignore_terms |
Terms marked with 'ignore' directive in Lark |
|
rules |
Grammar production rules |
Warning
The tokenization semantics may differ from Lark since prioritized/maximum-munch tokenization is not preserved when encoding into the grammar.
Note
Several features require careful handling in the conversion:
-
The 'ignore' directive is implemented by concatenating terminal regexes with an optional prefix containing ignore terms. This preserves semantics but uses a different implementation.
-
When compiling terminal regexes to Python re syntax, some features may not be fully supported by the interegular library.
-
Implementations of '.' and '^' use negated character classes relative to string.printable. Other edge cases may exist, particularly with lookahead/lookbehind.
Source code in genlm/grammar/lark_interface.py
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 | |
__init__(grammar, cnf=False)
Initialize a LarkStuff instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
grammar
|
A Lark grammar string |
required | |
cnf
|
Whether to convert grammar to Chomsky Normal Form |
False
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If grammar does not define a 'start' rule |
Source code in genlm/grammar/lark_interface.py
convert()
Convert the Lark grammar into a genlm_grammar.CFG grammar.
Returns:
| Name | Type | Description |
|---|---|---|
CFG |
A context-free grammar in genlm_grammar format with renumbered states |
Source code in genlm/grammar/lark_interface.py
interegular_to_wfsa(pattern, charset='core', name=lambda x: x)
Convert an interegular regex pattern to a weighted finite state automaton.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pattern
|
The regex pattern string to convert |
required | |
name
|
Function to transform state names (default: identity function) |
lambda x: x
|
|
charset
|
Character set to use for negative character classes. Can be 'core' for |
'core'
|
Returns:
| Type | Description |
|---|---|
WFSA
|
A weighted finite state automaton representing the regex pattern |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If charset is not 'core' or a set |
Note
Multi-character transitions from the regex are excluded with a warning, as they cannot be directly represented in the WFSA format.
Source code in genlm/grammar/lark_interface.py
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 | |