Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mixtao/text-generation-webui
jchen8000
/
text-webui-CPUBasic
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
074d31b
text-webui-CPUBasic
/
grammars
/
simple_arithmetic.gbnf
zhengr
First version
19dc0f3
10 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
root ::= (expr
"="
ws term
"\n"
)+
expr ::= term ([-+*/] term)*
term ::= num |
"("
ws expr
")"
ws
num ::= [
0
-9
]+ ws
ws ::= [ \t\n]*
# this is a comment