Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -54,5 +54,8 @@ def sepia(input_img_path):
|
|
54 |
else:
|
55 |
return "women"
|
56 |
|
57 |
-
demo = gr.Interface(fn=sepia,inputs= gr.Image(type="filepath",height=700,width=600),outputs="text"
|
|
|
|
|
|
|
58 |
demo.launch()
|
|
|
54 |
else:
|
55 |
return "women"
|
56 |
|
57 |
+
demo = gr.Interface(fn=sepia,inputs= gr.Image(type="filepath",height=700,width=600),outputs="text",
|
58 |
+
examples=[ ["0008.jpg"],['0059.jpg'],['0d0408eb-b0f2-454b-b4cf-1bd9d48ab3a5.jpg'],
|
59 |
+
['20240609_175821.jpg'],['20240609_180301.jpg'],['20240609_180425.jpg'],
|
60 |
+
['20240609_180539.jpg'],['5ac73492-f665-48a1-a9c9-320bd7dfa1b6.jpg'])
|
61 |
demo.launch()
|