Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
osanseviero
/
test_pt_nightly
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
osanseviero
commited on
May 2, 2023
Commit
1a57e80
·
1 Parent(s):
ca75768
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
import torch
3
+
4
+
def greet(name):
5
+
return torch.cuda.device_count()
6
+
7
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+
9
+
demo.launch()