Update app.py
Browse files
app.py
CHANGED
@@ -4,4 +4,4 @@ import torch
|
|
4 |
def greet(n):
|
5 |
return f"{torch.Tensor([n]).cuda()}"
|
6 |
|
7 |
-
gr.Interface(
|
|
|
4 |
def greet(n):
|
5 |
return f"{torch.Tensor([n]).cuda()}"
|
6 |
|
7 |
+
gr.Interface(greet, gr.Number(), gr.Text()).launch()
|