File size: 253 Bytes
c684a3f
 
 
051bdea
 
59db64f
c96ad07
17c5e5e
45b93a0
17c5e5e
c684a3f
4737df1
5f05e27
c684a3f
05b4c0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
""" App
"""

import gradio as gr
import time
import os
import torch
import spaces
1/0
@spaces.GPU
def greet(name):
    return "Hello there {}".format(name)
# comment updated 2
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()