Spaces:
Running
Running
Commit
·
cf8f583
1
Parent(s):
cb2694b
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
def greet(name):
|
4 |
return "Hello " + name + "!!"
|
|
|
1 |
import gradio as gr
|
2 |
+
import torch
|
3 |
+
from PIL import Image
|
4 |
+
from PIL import ImageDraw
|
5 |
+
from PIL import ImageFont
|
6 |
+
import cv2
|
7 |
+
import numpy as np
|
8 |
|
9 |
def greet(name):
|
10 |
return "Hello " + name + "!!"
|