Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def sepia(image):
|
|
10 |
sepia_img /= sepia_img.max()
|
11 |
return sepia_img
|
12 |
|
13 |
-
|
14 |
|
15 |
# Write 1 line of Python to create a simple GUI
|
16 |
gr.Interface(fn=sepia, inputs="image", outputs="image").launch();
|
|
|
10 |
sepia_img /= sepia_img.max()
|
11 |
return sepia_img
|
12 |
|
13 |
+
import gradio as gr
|
14 |
|
15 |
# Write 1 line of Python to create a simple GUI
|
16 |
gr.Interface(fn=sepia, inputs="image", outputs="image").launch();
|