Update app.py
Browse files
app.py
CHANGED
@@ -136,7 +136,6 @@ tab1 = gr.Interface(
|
|
136 |
fn=fn,
|
137 |
inputs=[image_upload, model_selector_1],
|
138 |
outputs=processed_img_upload,
|
139 |
-
examples=[["ironman.jpg", "BiRefNet/RMBG"]],
|
140 |
api_name="image",
|
141 |
description="Upload an image and choose your background removal model."
|
142 |
)
|
@@ -155,7 +154,6 @@ tab3 = gr.Interface(
|
|
155 |
fn=process_file,
|
156 |
inputs=[image_file_upload, model_selector_3],
|
157 |
outputs=output_file,
|
158 |
-
examples=[["ironman.jpg", "BiRefNet/RMBG"]],
|
159 |
api_name="png",
|
160 |
description="Upload an image, choose a model, and get a transparent PNG."
|
161 |
)
|
|
|
136 |
fn=fn,
|
137 |
inputs=[image_upload, model_selector_1],
|
138 |
outputs=processed_img_upload,
|
|
|
139 |
api_name="image",
|
140 |
description="Upload an image and choose your background removal model."
|
141 |
)
|
|
|
154 |
fn=process_file,
|
155 |
inputs=[image_file_upload, model_selector_3],
|
156 |
outputs=output_file,
|
|
|
157 |
api_name="png",
|
158 |
description="Upload an image, choose a model, and get a transparent PNG."
|
159 |
)
|