Spaces:
Build error
Build error
app.py
CHANGED
@@ -127,7 +127,7 @@ with demo:
|
|
127 |
|
128 |
**Motivation behind building this App:** When we see a long video without timestamps, we often wonder 'if' the content we are looking for is in there, or 'where' in the video is the content we are looking for? The Idea is that we might have questions like 'Is the xxxx thing covered in this video?', or maybe 'does the host talks about the architecture of the xxxxx model', or maybe 'Does host talk about alien doorway on Mars?' and so on.
|
129 |
|
130 |
-
So this App could help you in reaching to that timestamp in 'Record time'
|
131 |
|
132 |
**Best part:** You don't even have to move away from the Space tab in your browser as the YouTube video gets played within the given View.
|
133 |
"""
|
@@ -144,28 +144,13 @@ with demo:
|
|
144 |
example_question = gr.Dropdown(
|
145 |
["Choose a sample question", "Does video talk about different modalities",
|
146 |
"does the model uses perceiver architecture?",
|
147 |
-
#"how was the data collected for flamingo?",
|
148 |
"when does the video talk about locked image tuning or lit?",
|
149 |
-
#"comparison of clip and lit?",
|
150 |
-
#"when does jurassic model starts?",
|
151 |
-
#"when does miracle model starts?",
|
152 |
"comparison between gpt3 and jurassic?",
|
153 |
-
#"Can the model do classification",
|
154 |
-
#"Does the model pushes state of the art in image classification",
|
155 |
-
#"Is deepmind copying openai",
|
156 |
-
#"Is flamingo good enough",
|
157 |
"Has flamingo passed turing test yet?",
|
158 |
-
#"Are there cool examples from flamingo in the video?",
|
159 |
-
#"Does the video talk about cat?",
|
160 |
"Any funny examples in video?",
|
161 |
-
"is there a demo of jurassic?",
|
162 |
"is it possible to download the stylegan model?",
|
163 |
-
"does the video covers graph neural network ?",
|
164 |
"what was very cool?",
|
165 |
-
"
|
166 |
-
"were there any book suggestions?",
|
167 |
-
"does the video discuss multilingual language models?",
|
168 |
-
"whar is the cool library?"], label= "Choose a sample Question", value=None)
|
169 |
with gr.Row():
|
170 |
example_video = gr.CheckboxGroup( ["https://www.youtube.com/watch?v=smUHQndcmOY"], label= "Choose a sample YouTube video")
|
171 |
|
|
|
127 |
|
128 |
**Motivation behind building this App:** When we see a long video without timestamps, we often wonder 'if' the content we are looking for is in there, or 'where' in the video is the content we are looking for? The Idea is that we might have questions like 'Is the xxxx thing covered in this video?', or maybe 'does the host talks about the architecture of the xxxxx model', or maybe 'Does host talk about alien doorway on Mars?' and so on.
|
129 |
|
130 |
+
**So this App could help you in reaching to that timestamp in 'Record time'!**
|
131 |
|
132 |
**Best part:** You don't even have to move away from the Space tab in your browser as the YouTube video gets played within the given View.
|
133 |
"""
|
|
|
144 |
example_question = gr.Dropdown(
|
145 |
["Choose a sample question", "Does video talk about different modalities",
|
146 |
"does the model uses perceiver architecture?",
|
|
|
147 |
"when does the video talk about locked image tuning or lit?",
|
|
|
|
|
|
|
148 |
"comparison between gpt3 and jurassic?",
|
|
|
|
|
|
|
|
|
149 |
"Has flamingo passed turing test yet?",
|
|
|
|
|
150 |
"Any funny examples in video?",
|
|
|
151 |
"is it possible to download the stylegan model?",
|
|
|
152 |
"what was very cool?",
|
153 |
+
"what is the cool library?"], label= "Choose a sample Question", value=None)
|
|
|
|
|
|
|
154 |
with gr.Row():
|
155 |
example_video = gr.CheckboxGroup( ["https://www.youtube.com/watch?v=smUHQndcmOY"], label= "Choose a sample YouTube video")
|
156 |
|