Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ain3007-project
/
model-inference
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
osbm
commited on
Jan 13, 2024
Commit
68ba513
·
verified
·
1 Parent(s):
ea60a21
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-0
app.py
CHANGED
Viewed
@@ -1,4 +1,6 @@
1
import gradio as gr
2
3
def greet(name, intensity):
4
return "Hello " * intensity + name + "!"
1
import gradio as gr
2
+
import monai
3
+
import torch
4
5
def greet(name, intensity):
6
return "Hello " * intensity + name + "!"