-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
224 lines (193 loc) · 6.6 KB
/
index.html
File metadata and controls
224 lines (193 loc) · 6.6 KB
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>InteractiveSurvey</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #fefefe;
color: #333;
margin: 0;
padding: 2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
h1 {
text-align: center;
color: #2c3e50;
}
video {
display: block;
margin: 1rem auto;
max-width: 100%;
border: 1px solid #ccc;
}
hr {
margin: 2rem 0;
border: none;
border-top: 1px solid #ccc;
}
.flowchart {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.flowchart-box {
padding: 0.75rem 1.5rem;
border: 2px solid #3498db;
border-radius: 6px;
background-color: #ecf0f1;
min-width: 200px;
text-align: center;
position: relative;
}
.arrow {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 20px solid #3498db;
}
.description {
margin-top: 2rem;
line-height: 1.6;
}
/* PDF 阅读器样式 */
.pdf-container {
margin: 2rem 0;
width: 100%;
height: 600px;
border: 1px solid #ddd;
border-radius: 4px;
overflow: hidden;
}
.pdf-container iframe {
width: 100%;
height: 100%;
border: none;
}
/* 导航按钮样式 */
.nav-buttons {
display: flex;
justify-content: center;
gap: 15px;
margin: 2rem 0;
flex-wrap: wrap;
}
.nav-button {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: linear-gradient(145deg, #3498db, #2980b9);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
min-width: 120px;
justify-content: center;
}
.nav-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(52, 152, 219, 0.4);
background: linear-gradient(145deg, #2980b9, #3498db);
}
.nav-button:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}
.nav-button .icon {
font-size: 18px;
}
.demo-button {
background: linear-gradient(145deg, #e74c3c, #c0392b);
box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}
.demo-button:hover {
background: linear-gradient(145deg, #c0392b, #e74c3c);
box-shadow: 0 6px 12px rgba(231, 76, 60, 0.4);
}
.github-button {
background: linear-gradient(145deg, #34495e, #2c3e50);
box-shadow: 0 4px 8px rgba(52, 73, 94, 0.3);
}
.github-button:hover {
background: linear-gradient(145deg, #2c3e50, #34495e);
box-shadow: 0 6px 12px rgba(52, 73, 94, 0.4);
}
/* Bilibili 按钮样式 */
.bilibili-button {
background: linear-gradient(145deg, #00a1d6, #0084b4);
box-shadow: 0 4px 8px rgba(0, 161, 214, 0.3);
}
.bilibili-button:hover {
background: linear-gradient(145deg, #0084b4, #00a1d6);
box-shadow: 0 6px 12px rgba(0, 161, 214, 0.4);
}
/* Mobile 响应布局优化 */
@media (max-width: 600px) {
.nav-button {
flex: 1 1 100%;
text-align: center;
}
}
</style>
</head>
<body>
<h1>InteractiveSurvey: An LLM-based Personalized and Interactive Survey
Paper Generation System</h1>
<!-- Navigation Buttons Section -->
<div class="nav-buttons">
<a href="https://arxiv.org/abs/2504.08762" target="_blank" class="nav-button">
<span class="icon">📄</span>
Paper
</a>
<a href="https://github.com/TechnicolorGUO/InteractiveSurvey" target="_blank" class="nav-button github-button">
<span class="icon">⭐</span>
GitHub
</a>
<a href="https://interactivesurvey.cn/" class="nav-button demo-button">
<span class="icon">🚀</span>
Online Demo
</a>
<a href="https://www.bilibili.com/video/BV1dju2z8ESw/" target="_blank" class="nav-button bilibili-button">
<span class="icon">📺</span>
Bilibili
</a>
</div>
<div style="font-size: 12px; color: #666; text-align: center; margin-top: 4px;">
[Note: Demo is deployed on a single GPU server and may experience slower response times with multiple requests. Please be patient.]
</div>
<!-- Video Section -->
<video controls>
<source src="resources/demo_2.mp4" type="video/mp4" />
</video>
<hr />
<!-- Flowchart Section -->
<img src="resources/flowchart.png" alt="Flowchart" style="display: block; margin: 0 auto; max-width: 100%;" />
<!-- Description -->
<div class="description">
<p>
The exponential growth of academic literature creates urgent demands for comprehensive survey papers, yet manual writing remains time-consuming and labor-intensive. While most large language models (LLMs) support long document summarization, their context windows limit a comprehensive survey over multiple references (e.g., >10 papers). Recent advances in retrieval-augmented generation (RAG) facilitate studies in synthesizing survey papers from multiple references, but most existing works restrict users to title-only inputs and fixed outputs, neglecting the personalized process of survey paper writing. In this paper, we introduce InteractiveSurvey - an LLM-based personalized and interactive survey paper generation system. InteractiveSurvey can generate structured, multi-modal survey papers with reference categorizations from multiple reference papers through both online retrieval and user uploads. More importantly, users can customize and refine every component in survey paper generation, including reference categorization, survey paper outline, and the textual content through an intuitive interface. Evaluation results show that InteractiveSurvey achieves superior content quality in generated survey papers compared to most LLMs and existing survey generation methods, while also remaining time efficient.
</p>
</div>
<!-- 新增的水平线和PDF阅读器 -->
<hr />
<h3> Examples </h3>
<div class="pdf-container">
<iframe src="examples/A Survey of Large Language Model for Recommendation System.pdf"></iframe>
</div>
<hr />
<div class="pdf-container">
<iframe src="examples/A Survey of Large Language Model for Recommendation System_md.pdf"></iframe>
</div>
</body>
</html>