-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (63 loc) · 3.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jerma's Chat: Real or AI</title>
<meta name="description" content="Test your knowledge of Jerma's Twitch Chat">
<meta name="author" content="stick">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js" integrity="sha512-WNLxfP/8cVYL9sj8Jnp6et0BkubLP31jhTG9vhL/F5uEZmg5wEzKoXp1kJslzPQWwPT1eyMiSxlKCgzHLOTOTQ==" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/cf5e89024c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="container">
<div id="result-correct" class="result">
<i class="fas fa-check"></i>
<b>Correct!</b>
<div id="streak-correct" class="streak">
Current Streak: 1
</div>
</div>
<div id="result-incorrect" class="result">
<i class="fa fa-times" aria-hidden="true"></i>
<b>Incorrect!</b>
<div id="streak-incorrect" class="streak">
Streak: 1
</div>
<div id="try-again" onclick="tryAgain()">Try again?</div>
</div>
<div id="title">
Is this message AI generated or a real message from Jerma's Twitch Chat?
</div>
<div id="message">
<div id="displayMessage">
Can you imagine a world where we're all represented by a font??
</div>
<div class="dummy">
<div id="buttons">
<div id="ai-button" onclick="guess('ai')">
AI
</div>
<div id="real-button" onclick="guess('real')">
Real
</div>
</div>
</div>
</div>
<div id="info">
<span style="font-size: 1.5em">More AI messages over at <a href="https://aichat.jerma.io">AI Chat</a></span>
<br>
The AI messages are generated using Tensorflow and GPT-2 (an AI model) that is trained on Jerma's chat.
<br>
Made with <3 by stick (<a href="https://twitter.com/stick_twt">@stick_twt</a>)
<br>
Disclaimer: I am not responsible for any content generated. If you see something bad, please let me know on Discord or at the <a href="https://github.com/JermaSites/jermaRealOrAI ">GitHub repo</a>.
<br>
Jerma, if you see this, please please please please please please do Twitch Detective again but with AI Chatbots for chat to find <img alt='jermaHeart' title='jermaHeart' class='twitch-emote twitch-emote-0' src='https://static-cdn.jtvnw.net/emoticons/v1/1279975/1.0'>
<br>
</div>
</div>
<script src="scripts.js"></script>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "8a624e372b2b42baa0649413c7246f5e"}'></script><!-- End Cloudflare Web Analytics -->
</body>
</html>