Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ st.title('Take your picture to the next level')
|
|
6 |
|
7 |
def upscale(model_choice):
|
8 |
if model_choice == "EDSR":
|
9 |
-
|
10 |
-
model =
|
11 |
else:
|
12 |
st.text('Not supported yet. Comeback soon for fun releases')
|
13 |
|
|
|
6 |
|
7 |
def upscale(model_choice):
|
8 |
if model_choice == "EDSR":
|
9 |
+
|
10 |
+
model = EdsrModel.from_pretrained("eugenesiow/edsr-base")
|
11 |
else:
|
12 |
st.text('Not supported yet. Comeback soon for fun releases')
|
13 |
|