Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -224,15 +224,22 @@ def main():
|
|
224 |
|
225 |
blocks = gr.Blocks()
|
226 |
with blocks:
|
227 |
-
|
228 |
gr.Markdown(
|
229 |
"""
|
230 |
# CLIP + GamePhysics - Searching dataset of Gameplay bugs
|
231 |
-
|
232 |
This demo shows how to use the CLIP model to search for gameplay bugs in a video game.
|
|
|
|
|
233 |
"""
|
234 |
)
|
235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
gr.TabbedInterface([main], ["GTA V Demo"])
|
237 |
|
238 |
blocks.launch(
|
|
|
224 |
|
225 |
blocks = gr.Blocks()
|
226 |
with blocks:
|
|
|
227 |
gr.Markdown(
|
228 |
"""
|
229 |
# CLIP + GamePhysics - Searching dataset of Gameplay bugs
|
230 |
+
|
231 |
This demo shows how to use the CLIP model to search for gameplay bugs in a video game.
|
232 |
+
|
233 |
+
Enter your query and select the game you want to search for.
|
234 |
"""
|
235 |
)
|
236 |
|
237 |
+
gr.Markdown(
|
238 |
+
"""
|
239 |
+
[Website](https://asgaardlab.github.io/CLIPxGamePhysics/) - [Paper](https://arxiv.org/abs/2203.11096)
|
240 |
+
"""
|
241 |
+
)
|
242 |
+
|
243 |
gr.TabbedInterface([main], ["GTA V Demo"])
|
244 |
|
245 |
blocks.launch(
|