Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cdactvm
/
Punjabi_ASR_Demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bb285c0
Punjabi_ASR_Demo
/
isNumber.py
cdactvm
Update isNumber.py
91052f5
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
193 Bytes
# Function to check if the string is a number
def
is_number
(
x
):
if
type
(x) ==
str
:
x = x.replace(
','
,
''
)
try
:
float
(x)
except
:
return
False
return
True