fixed the parameter issue with JSON
Browse files
app.py
CHANGED
|
@@ -709,7 +709,7 @@ with gr.Blocks(title="FrameLink AI Face Matcher") as demo:
|
|
| 709 |
return json.dumps(serializable_unmatched, indent=2)
|
| 710 |
|
| 711 |
show_unmatched_btn = gr.Button("Show Current Unmatched Embeddings (Debug View)")
|
| 712 |
-
unmatched_debug_output = gr.JSON(label="Current Unmatched Embeddings (JSON)"
|
| 713 |
show_unmatched_btn.click(
|
| 714 |
fn=get_unmatched_display_json,
|
| 715 |
inputs=[unmatched_embeddings_storage_state],
|
|
|
|
| 709 |
return json.dumps(serializable_unmatched, indent=2)
|
| 710 |
|
| 711 |
show_unmatched_btn = gr.Button("Show Current Unmatched Embeddings (Debug View)")
|
| 712 |
+
unmatched_debug_output = gr.JSON(label="Current Unmatched Embeddings (JSON)")
|
| 713 |
show_unmatched_btn.click(
|
| 714 |
fn=get_unmatched_display_json,
|
| 715 |
inputs=[unmatched_embeddings_storage_state],
|