Spaces:
Running
Running
import gradio as gr | |
import torch | |
from PIL import Image | |
from PIL import ImageDraw | |
from PIL import ImageFont | |
import cv2 | |
import numpy as np | |
def greet(name): | |
return "Hello " + name + "!!" | |
iface = gr.Interface(fn=greet, inputs="text", outputs="text") | |
iface.launch() |