Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
from PIL import Image
|
3 |
import tempfile
|
|
|
|
|
|
|
|
|
4 |
|
5 |
def fake():
|
6 |
image = Image.new("RGB", (512, 512))
|
|
|
|
|
|
|
1 |
import tempfile
|
2 |
+
from pathlib import Path
|
3 |
+
from PIL import Image
|
4 |
+
import gradio as gr
|
5 |
+
|
6 |
|
7 |
def fake():
|
8 |
image = Image.new("RGB", (512, 512))
|