Anthony-Ml commited on
Commit
187b87b
1 Parent(s): 8f5f869

Update app.py

Browse files

add another tac

Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -19,3 +19,8 @@ enable_queue=True
19
 
20
  gr.Interface(fn=predict_image, inputs=gr.Image(shape=(224,224)),
21
  outputs = gr.Label(num_top_classes=3),title=title,description=description,examples=examples,article=article, interpretation=interpretation,enable_queue=enable_queue).launch(share=False)
 
 
 
 
 
 
19
 
20
  gr.Interface(fn=predict_image, inputs=gr.Image(shape=(224,224)),
21
  outputs = gr.Label(num_top_classes=3),title=title,description=description,examples=examples,article=article, interpretation=interpretation,enable_queue=enable_queue).launch(share=False)
22
+
23
+ import gradio as gr
24
+ with gr.Blocks() as demo:
25
+ with gr.Tab(label = "Expainability"):
26
+ demo.launch()