-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (75 loc) · 2.64 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
<html>
<head>
<title>Horror Plot</title>
<!-- CSS -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="row">
<div class="col-md-6">
<h1 class="head">Horror Plot Generator</h1>
<center>
<img src="./assets/Bottom-Dark.png" style="width: 80%" />
</center>
<h2 class="sub">
A character-level LSTM is constructed with PyTorch to generate a
horror plot on the ocassion of Halloween. The network will train
character by character on some text, then generate new text character
by character. The input used to train this model was from a public
dataset on kaggle that has more than 15k movie plots. This model will
be able to generate new text based on the text from the lyrics! Here
is a demo of the project.
</h2>
</div>
<div class="col-md-6">
<!-- <img src="./assets/Full Moon.png" class="image" /> -->
<center>
<img src="./assets/preview.gif" class="demo" />
<div>
<img src="./assets/Bat.png" id="image" />
</div>
</center>
</div>
</div>
<div>
<center>
<a
href="https://github.com/Developer-Students-Club-MAIT"
target="_blank"
>
<i class="fa fa-github" style="color: antiquewhite"></i
></a>
<a href="https://twitter.com/dsc_mait" target="_blank">
<i class="fa fa-twitter" style="color: antiquewhite"></i>
</a>
<a href="https://www.instagram.com/dsc_mait/" target="_blank">
<i class="fa fa-instagram" style="color: antiquewhite"></i
></a>
<a
href="https://m.facebook.com/Developer-Student-Club-MAIT-103625534816728/?ref=bookmarks"
target="_blank"
>
<i class="fa fa-facebook" style="color: antiquewhite"></i
></a>
</center>
</div>
</body>
</html>