Eric Joanis
Eric Joanis
The documentation `Mapping.as_is` has been deprecated since 0.6, I think by now it should be safe to delete it from the code. Does that require a "breaking change" and therefore...
api/v1 and api/v2 should use [email protected] as contact e-mail Maybe elsewhere too, like in the README? Maybe same in Studio's and Studio-Web's READMEs?
Could do it the same way as https://github.com/roedoejet/EveryVoice/pull/389
In the CLI, running g2p on multiple words in English requires tokenization, which is now enabled by default: ``` $ g2p convert "astonishing, my friend" eng eng-arpabet AH S T...
Before the conversion to Pydantic, problems in the config files would raise `MalformedMapping` with an (at least somewhat) informative message. Now we get a pydantic error that's much harder to...
The `context_before` field has some limitations in what REs can be used, due to how it is used to construct a look-behind assertion. These limitations are not currently documented.
Given mapping `[{"in": "d{1}ef{2}", "out": "gh{1}i{2}"}]` whenever `def` occurs in the input, the output is correct, but the next edge disappears. E.g., with input `deft` the output is correct. `ghit`,...
The recent upgrade to Pydantic 2 broke `g2p generate-mapping`, but we don't have adequate unit testing and the bugs introduced were not caught. See #293 fixing that. So we should...
Given the mapping a{1}b{2},c{2}d{1} converting `ab` correctly outputs `cd` unless prevent-feeding is true, in which case it outputs `c{2}d{1}` To reproduce, make a single-rule mapping in g2p-studio with In=`a{1}b{2}` and...