Spaces:
No application file
No application file
File size: 1,025 Bytes
305a7f0 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BM25 Search App</title>
<link rel="stylesheet" href="static\css\styles.css">
</head>
<body>
<div class="container">
<h1>BM25 Search App</h1>
<form action="/search" method="post">
<label for="query">Enter your query:</label>
<input type="text" id="query" name="query">
<input type="submit" value="Search">
</form>
{% if error %}
<p>{{ error }}</p>
{% endif %}
{% if query %}
<h2>Results for "{{ query }}":</h2>
<div class="results">
<p>BM25 scores: {{ doc_scores }}</p>
<h3>Top Documents:</h3>
<ul>
{% for doc in top_n_docs %}
<li>{{ doc }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</body>
</html>
|