Spaces:
Sleeping
Sleeping
chatgpt winter eepy disease is real
Browse files
app.py
CHANGED
@@ -7,7 +7,11 @@ def process_image(input_image, learning_rate, iterations):
|
|
7 |
|
8 |
iface = gr.Interface(
|
9 |
fn=process_image,
|
10 |
-
inputs=[
|
|
|
|
|
|
|
|
|
11 |
outputs=gr.Image()
|
12 |
)
|
13 |
|
|
|
7 |
|
8 |
iface = gr.Interface(
|
9 |
fn=process_image,
|
10 |
+
inputs=[
|
11 |
+
gr.Image(),
|
12 |
+
gr.Number(value=0.01, label="Learning Rate"),
|
13 |
+
gr.Number(value=1, label="Iterations")
|
14 |
+
],
|
15 |
outputs=gr.Image()
|
16 |
)
|
17 |
|