mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
8 lines
249 B
Plaintext
8 lines
249 B
Plaintext
|
# A probably incorrect grammar for Japanese
|
||
|
root ::= jp-char+ ([ \t\n] jp-char+)*
|
||
|
jp-char ::= hiragana | katakana | punctuation | cjk
|
||
|
hiragana ::= [ぁ-ゟ]
|
||
|
katakana ::= [ァ-ヿ]
|
||
|
punctuation ::= [、-〾]
|
||
|
cjk ::= [一-鿿]
|