Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
m3hrdadfi
/
gpt2-persian-qa
like
5
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c4359e7
gpt2-persian-qa
/
regexes
/
number.py
m3hrdadfi
Hello gpt2-qa
f474d6a
over 3 years ago
raw
Copy download link
history
blame
Safe
172 Bytes
import
re
NUMBERS_REGEX = re.
compile
(
r"(?:^|(?<=[^\w,.]))[+–-]?(([1-9]\d{0,2}(,\d{3})+(\.\d*)?)|([1-9]\d{0,2}([ .]\d{3})+(,\d*)?)|(\d*?[.,]\d+)|\d+)(?:$|(?=\b))"
)