comma typo fix
Browse files
app.py
CHANGED
@@ -243,8 +243,8 @@ if __name__ == "__main__":
|
|
243 |
examples = gr.Examples(
|
244 |
examples=[[None, "human", "PBMC 100 cells"],[None, "human", "PBMC 1000 cells"]],
|
245 |
inputs=[file_input, species_input, default_dataset_input],
|
246 |
-
outputs=[image_output, file_output, pred_output]
|
247 |
-
fn=main
|
248 |
cache_examples=True
|
249 |
)
|
250 |
|
|
|
243 |
examples = gr.Examples(
|
244 |
examples=[[None, "human", "PBMC 100 cells"],[None, "human", "PBMC 1000 cells"]],
|
245 |
inputs=[file_input, species_input, default_dataset_input],
|
246 |
+
outputs=[image_output, file_output, pred_output],
|
247 |
+
fn=main,
|
248 |
cache_examples=True
|
249 |
)
|
250 |
|