-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (68 loc) · 3.76 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
<!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="icon" href="src/icon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<meta charset="UTF-8">
<title>Generative Art</title>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<div class='container mx-auto my-4 px-4'>
<h1 class="text-xl text-red-500">Improv RNN arpeggiator (Fixed Pattern Length)(Trained with Jazz Music)</h1>
<p>Just Press on a KEY.This will help you to create a melody bewteen two boundaries(Chords) Hold 2 or more chords and let the model generate a tune bewteen them</p>
<div class="d-flex justify-content-center mx-auto gap-5">
<a href="improv_rnn_arpeggiator/index.html" class="my-2 px-4 py-2
border-2 border-blue-500 rounded-md
bg-gradient-to-b from-blue-600 to-blue-500
hover:from-blue-500 hover:to-blue-300
text-white shadow-lg"> Improv RNN arpeggiator </a>
</div>
<h1 class="text-xl text-red-500">Improv RNN Auto Completion (No Definate Length)(Trained with soft music) </h1>
<p>Just Press on a KEY.This will help you to autogenerate a tune alongside you so it will be a fun experience to have a AI play alongside with Human Actor.</p>
<div class="d-flex justify-content-center mx-auto gap-5">
<a href="improv_rnn_autocompletion/index.html" class="my-2 px-4 py-2
border-2 border-blue-500 rounded-md
bg-gradient-to-b from-blue-600 to-blue-500
hover:from-blue-500 hover:to-blue-300
text-white shadow-lg"> Improv RNN Auto Completion </a>
</div>
<h1 class="text-xl text-red-500">Improv RNN (Human AI Collabrative)</h1>
<p>This will help you to create a music sequence alongside the generated sequence.</p>
<div class="d-flex justify-content-center mx-auto gap-5">
<a href="improv_rnn/piano.html" class="my-2 px-4 py-2
border-2 border-blue-500 rounded-md
bg-gradient-to-b from-blue-600 to-blue-500
hover:from-blue-500 hover:to-blue-300
text-white shadow-lg"> Improv RNN Collabrative Music Generation </a>
</div>
<h1 class="text-xl text-red-500">Drums RNN </h1>
<p>This will help you to create a drum beat with your own sequence and allow you to add custom beats to the generated sequence.</p>
<div class="d-flex justify-content-center mx-auto gap-5">
<a href="drums_rnn/index.html" class="my-2 px-4 py-2
border-2 border-blue-500 rounded-md
bg-gradient-to-b from-blue-600 to-blue-500
hover:from-blue-500 hover:to-blue-300
text-white shadow-lg"> Drums RNN </a>
</div>
<h1 class="text-xl text-red-500">Work In Progress </h1>
<div class="d-flex justify-content-center mx-auto gap-5">
<a href="sketch_rnn/index.html" class="btn btn-light btn-lg"> Art Generation </a>
</div>
</div>
</body>
</html>