Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,8 +9,8 @@ import gradio as gr
|
|
9 |
from PIL import Image
|
10 |
import os
|
11 |
|
12 |
-
from
|
13 |
-
from
|
14 |
|
15 |
# Device configuration
|
16 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
|
|
9 |
from PIL import Image
|
10 |
import os
|
11 |
|
12 |
+
from small_256_model import UNet as small_UNet
|
13 |
+
from big_1024_model import UNet as big_UNet
|
14 |
|
15 |
# Device configuration
|
16 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|