Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thelou1s
/
yamnet_test
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
97249f0
yamnet_test
/
python
/
util
/
str_util.py
Luis
init2
97249f0
over 1 year ago
raw
Copy download link
history
blame
Safe
149 Bytes
def
truncate_str
(
the_str, the_max
):
return
the_str[:the_max]
if
len
(the_str) > the_max
else
the_str
def
format_float
(
f
):
return
'%.2f'
% f