Reece H. Dunn
Reece H. Dunn
Great! Thanks for doing the investigation. I agree that `a#` should be the correct phoneme in the output.
The word buffer size and phoneme list being of comparable size (800 for the source size and 1000 for the phoneme list size) is predicated on the assumption that the...
I'm in favour of having interfaces because then you are not tied to specific immutable implementations in your APIs (e.g. you could have different classes implementing sublists, map keys, etc.)....
Thanks for the flag. After rechecking this, it's the `prepare_depparse_treebank` script that is doing the download/trying to download the pos model. See [`prepare_depparse_treebank.py` line 62](https://github.com/stanfordnlp/stanza/blob/c530c9af647d521262b56b717bcc38b0cfc5f1b8/stanza/utils/datasets/prepare_depparse_treebank.py#L62). The logic of the `choose_tagger_model`...
An attempt at a DOM to XPath XDM has been made at https://qt4cg.org/specifications/xpath-functions-40/Overview.html#html. Feedback is welcome. Note that this needs to add a conversion mode for not processing namespaces so...
See https://github.com/qt4cg/qtspecs/issues/296 for making the XPath matching side of this work, given a HTML document mapped to the XDM.
Japanese consists of 3 scripts: 1. Hiragana 2. Katakana 3. Kanji At the moment (via ja_rules) the Japanese language support only handles Hiragana and Katakana -- i.e. the Japanese syllabary/phonetic...
I'm not sure why there are missing phonemes -- that's a separate (already reported) issue to this one and should be discussed there to avoid confusing the two issues. This...
Ideally, this should update the TranslateRoman function (https://github.com/espeak-ng/espeak-ng/blob/master/src/libespeak-ng/numbers.c#L756) so that it can correctly map the Unicode characters to the correct number (allowing mixed characters, such as in your year examples),...
> Would it be enough to only extend these two lines in `TranslateRoman`? I'm bad at C++ so I'm not sure `char` can hold unicode characters. > > ```c++ >...