Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
hadasak
/
SciTrends
like
1
Sleeping
App
Files
Files
Community
main
SciTrends
/
python_functions.py
hadasak
Upload folder using huggingface_hub
c13a669
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
167 Bytes
import
numpy
as
np
def
test_string_function
(
string
):
return
(string)
def
test_math_function
(
x,y
):
return
(x+y)
def
test_numpy_function
(
x,y
):
return
(np.add(x,y))