Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
zhendery/voxcpm
zeg59
/
voxcpm
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
81ecfab
voxcpm
/
utils.py
zhendery
添加调试信息
81ecfab
4 days ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
datetime
def
print_with_time
(
*args
):
timestamp = datetime.datetime.now().strftime(
"%Y-%m-%d %H:%M:%S"
)
print
(
f"
{timestamp}
: "
, *args)