File size: 351 Bytes
ee2df8c
e02f821
2051a9f
e02f821
ee2df8c
 
 
01ab6e1
 
 
 
ee2df8c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr
from image_captioning import get_image_captioning_tab
from visual_qa import get_visual_qa_tab
from zero_shot_classification import get_zero_shot_classification_tab


with gr.Blocks() as app:
    with gr.Tabs():
        get_image_captioning_tab()
        get_visual_qa_tab()
        get_zero_shot_classification_tab()


app.launch()