Peter Olson
Peter Olson
Try doing the stroke quiz on the demo page with the character 體. https://hanziwriter.org/demo.html The fourth stroke of 體, which is a short horizontal stroke, is not being accepted even...
Simplified characters that have the 艹 radical (such as 艺) are written using three strokes. Traditional characters that have the 艹 radical (such as 藝) are written using four strokes....
The display of the character 為 looks like 爲, and it looks like the character 爲 isn't supported.
For example, it's common to write 子 as only two strokes instead of three strokes, and to write the 女 component in 好 with only two strokes. Is it possible...
Two of the "getting started" links in the README are broken: (open 404 page) [30-minute video showing all Nx features](https://nx.dev/getting-started/what-is-nx) [Interactive Tutorial](https://nx.dev/tutorial/01-create-application)
Vigil has a naïve implementation for parsing `implore` and `swear` statements. Here is the relevant section of the source, starting at line 82. ``` for line in source_lines: line =...
## How to reproduce the behaviour Run the following code: ``` import spacy nlp = spacy.load('zh_core_web_trf') parsed = nlp("""故事不是用"说"故事或"讲"故事 为什么我们要用"聊"故事呢?""") for token in parsed: print(token.text, token.pos_) ``` which produces the...