Spaces:
Sleeping
Sleeping
JasonJwba
commited on
Commit
•
d2625c6
1
Parent(s):
097660a
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,18 @@
|
|
1 |
import gradio as gr
|
2 |
-
import spaces
|
3 |
-
import torch
|
4 |
|
5 |
-
@spaces.GPU
|
6 |
def greet(name):
|
7 |
-
return
|
8 |
|
9 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
10 |
-
iface.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
|
|
3 |
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
|
6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
8 |
+
|
9 |
+
# import gradio as gr
|
10 |
+
# import spaces
|
11 |
+
# import torch
|
12 |
+
|
13 |
+
# @spaces.GPU
|
14 |
+
# def greet(name):
|
15 |
+
# return f"Tensor: {torch.Tensor([0]).cuda()}, Name: {name}"
|
16 |
+
|
17 |
+
# iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
18 |
+
# iface.launch()
|