Update app.py
Browse files
app.py
CHANGED
@@ -205,7 +205,9 @@ def get_image(nodename, protoID):
|
|
205 |
with gr.Blocks() as demo:
|
206 |
|
207 |
imgpath = species_to_imgpath['bird']
|
|
|
208 |
ROOT = get_tree(imgpath)
|
|
|
209 |
gr.Markdown("## Interactive Tree and Image Display")
|
210 |
with gr.Row():
|
211 |
tree_output = gr.Plot(display_tree) # Connect the function directly
|
|
|
205 |
with gr.Blocks() as demo:
|
206 |
|
207 |
imgpath = species_to_imgpath['bird']
|
208 |
+
print(imgpath)
|
209 |
ROOT = get_tree(imgpath)
|
210 |
+
print(ROOT.name)
|
211 |
gr.Markdown("## Interactive Tree and Image Display")
|
212 |
with gr.Row():
|
213 |
tree_output = gr.Plot(display_tree) # Connect the function directly
|