-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathserver_videoqa.html
38 lines (37 loc) · 1.72 KB
/
server_videoqa.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> -->
<link rel="icon" href="https://antoyang.github.io/img/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://antoyang.github.io/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<center><h1> <a href='https://antoyang.github.io/just-ask.html'> Just Ask </a> VideoQA Demo </h1>
<h2> <a href='http://videoqa.paris.inria.fr/'> Back to Index </a> </h2></center>
<div class="row">
<div class="col-sm-offset-2 col-sm-6">
<iframe src="http://www.youtube.com/embed/{}?start={}&end={}"
width="100%" height="360" frameborder="0" ></iframe>
</div>
<div class="col-sm-2">
<br>
<form action="/vqa">
<label for="video_id">YouTube Video ID</label>
<input type="text" id="video_id" name="video_id" size="15" value="{}"><br><br>
<label for="start">Start second</label>
<input type="text" id="start" name="start" size="5" value={}><br><br>
<label for="end">End second</label>
<input type="text" id="end" name="end" size="5" value={}><br><br>
<b> Type your question below: </b> <br>
<input type="text" id="question" name="question" size="50" value="{}"><br><br>
<b> Choose the model below: </b> <br>
<input type="radio" id="finetuned" name="model" value="finetuned" checked>
<label for="finetuned">Finetuned</label>
<input type="radio" id="zeroshot" name="model" value="zeroshot">
<label for="zeroshot">Zero-Shot</label><br>
<input type="submit" value="Submit"><br>
</form>
</div>
</div>