Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
luis112
/
text-generation-webui
like
9
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
text-generation-webui
/
grammars
/
arithmetic.gbnf
luis112
Upload folder using huggingface_hub
7a73e8d
over 1 year ago
raw
Copy download link
history
blame
Safe
177 Bytes
root ::= (expr
"="
ws term
"\n"
)+
expr ::= term ([-+*/] term)*
term ::= ident | num |
"("
ws expr
")"
ws
ident ::= [a-z] [a-z0-9_]* ws
num ::= [0-9]+ ws
ws ::= [ \t\n]*