extra comma deleted
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ gallery = gr.Gallery(
|
|
64 |
columns=[3], rows=[3], object_fit="contain", height="auto")
|
65 |
|
66 |
demo = gr.Interface(fn=greet,
|
67 |
-
inputs=gr.Dropdown(choices=examples1, label="Pre-defined Prompt")
|
68 |
outputs=gallery,
|
69 |
title="Open AI CLIP")
|
70 |
print("Going to invoke demo.launch")
|
|
|
64 |
columns=[3], rows=[3], object_fit="contain", height="auto")
|
65 |
|
66 |
demo = gr.Interface(fn=greet,
|
67 |
+
inputs=gr.Dropdown(choices=examples1, label="Pre-defined Prompt"),
|
68 |
outputs=gallery,
|
69 |
title="Open AI CLIP")
|
70 |
print("Going to invoke demo.launch")
|