-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
200 lines (174 loc) · 5.45 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unsupervised DenseQuest</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
.navbar {
background-color: #4a235a;
padding: 1rem;
height: 50px; /* Fixed height for the banner */
}
.hero {
position: relative;
width: 100%;
height: 400px;
}
.hero-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('quest-banner.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: white;
padding: 2rem;
}
.hero-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.hero-content h1,
.hero-content h2,
.hero-content p {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
}
.content {
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
text-align: center;
color: #000000;
}
.content .section {
margin-bottom: 2rem;
}
.content p {
font-size: 1.2rem;
line-height: 1.6;
}
.content a {
color: #0000FF;
text-decoration: underline;
white-space: nowrap; /* Prevent link from breaking */
}
.content a:hover {
text-decoration: underline;
}
.footer {
background-color: #4a235a;
color: white;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: auto; /* Push footer to bottom */
}
.footer p {
font-size: 0.9rem;
max-width: 70%; /* Limit text width to make room for logos */
}
.footer .logos {
display: flex;
align-items: center;
}
.footer .logo-container {
background-color: white;
padding: 8px 12px;
border-radius: 4px;
display: flex;
align-items: center;
gap: 5px; /* 5px separation between logos */
}
.footer img {
height: 40px; /* Make both logos the same height */
}
.footer .logo-uq,
.footer .logo-ielab {
height: 40px;
}
.sample-dataset a {
color: #4a235a;
}
html, body {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh; /* Minimum height of viewport */
}
.main-content {
flex: 1;
}
</style>
</head>
<body>
<div class="main-content">
<nav class="navbar">
</nav>
<section class="hero">
<div class="hero-content">
<h1>Unsupervised DenseQuest</h1>
<h2>Selection and Ranking</h2>
<p>Simply upload you dataset and find out which model is the best for you.</p>
</div>
</section>
<div class="content">
<div class="section">
<p>DenseQuest offers unsupervised selection and ranking features to identify the most suitable pre-trained dense retriever from a pool, customized for a provided target collection.</p>
</div>
<div class="section">
<p>To request access to the live system, please contact us at <a href="mailto:e.khramtsova@uq.edu.au">e.khramtsova@uq.edu.au</a>.</p>
</div>
<div class="section">
<p>The live system can be accessed at the scheduled time via <a href="https://live-densequest.ielab.io">live-densequest.ielab.io</a>.</p>
</div>
</div>
</div>
<footer class="footer">
<p>S. Khramtsova, T. Leelanupab, S. Zhuang, M. Baktashmotlagh and G. Zuccon; Embark on DenseQuest: A System for Selecting the Best Dense Retriever for a Custom Collection;
In Proceedings of the 2024 ACM SIGIR Conference on Research and Development in Information Retrieval, SIGIR 2024, Washington D.C., USA (Accessible via the following <a href="#">link</a>)</p>
<div class="logos">
<div class="logo-container">
<img src="UQ-300x300-DJZ73o03.png" alt="UQ Logo" class="logo-uq">
<img src="ielab-page001-Y3flXrMX.png" alt="IE Lab Logo" class="logo-ielab">
</div>
</div>
</footer>
</body>
</html>