Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
tonyshark
/
ml_test
like
0
Model card
Files
Files and versions
Community
main
ml_test
/
lycoris
/
utils
/
general.py
tonyshark
Upload 132 files
cc69848
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
97 Bytes
def
product
(
xs:
list
[
int
|
float
]
):
res =
1
for
x
in
xs:
res *= x
return
res