Spaces:
Runtime error
Runtime error
File size: 1,203 Bytes
ff228d0 |
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 |
<!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">
<img src="static/image/IISER.png" alt="Department Logo" class="logo-left">
<img src="static/image/ISL.png" alt="Institute Logo" class="logo-right">
<h1>Wikipedia Article Retriver</h1>
<form action="/search" method="post">
<label for="query">Enter your Claim:</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>Relevent Documents:</h3>
<ul>
{% for doc in top_n_docs %}
<li>{{ doc[:600]}}</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</body>
</html>
|