Spaces:
Runtime error
Runtime error
File size: 1,240 Bytes
915892a cfd60cb 7544966 cfd60cb 0b3e29d cfd60cb 7544966 33d06ba 7544966 304ce0b 7544966 915892a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Reddit Topic Modelling</title>
</head>
<body style="background-color:#F2FAFB;">
<img align="right" src="static/reddit-logo-youtube-png-favpng-Rukc5hsDFfci1sNk1LkFBccvW.jpeg" alt="reddit-logo" style="width:90px;height:75px;">
<div class="container">
<h3>Topics</h3>
<br>
<div>
{% for t in topics %}
{{titles[loop.index]}}
{{ t|safe }}
{% endfor %}
</div>
<br>
<h3>Documents</h3>
<br>
<div>
{% for t in docs %}
{{docs_titles[loop.index]}}
{{ t|safe }}
{% endfor %}
</div>
</div>
<script
type="'text/javascript"
src="{{ url_for('static', filename='index.js') }}">
</script>
</body>
</html> |