-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (67 loc) · 2.92 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
<html>
<head>
<meta charset='UTF-8'>
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.6.1/lodash.min.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.20/p5.min.js'></script>
<script src="https://rawgit.com/processing/p5.js-sound/master/lib/p5.sound.min.js"></script>
<script src='actionPotential.js'></script>
<script src='neuron.js'></script>
<script src='noteNeuron.js'></script>
<script src='characterNeuron.js'></script>
<script src='negativeNeuron.js'></script>
<script src='timerNeuron.js'></script>
<script src='randomNeuron.js'></script>
<script src='exampleNeuronNets.js'></script>
<script src='sketch.js'></script>
<script src='userDomInteractions.js'></script>
<script src='neuronInfo.js'></script>
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
<link rel='stylesheet' type='text/css' href='style.css'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<title>Neural Playground</title>
</head>
<body>
<div id='control-panel'>
<div id='neuron-placement' class='column-left active grey' data-state='neuronPlacement'>
<p>Place/Delete Neurons</p>
Neuron Type:
<select id='neuronType'>
</select><br>
<span id='activationLevelSpan'>
Activation Level:
<input type='number' name='quantity' min='1' max='36' value='2' id='activationLevel'>
</span>
<span id='timerInputSpan' hidden>
Timer in Seconds:
<input type='number' min='.25' max='10' value='1' step='.25' id='timerActivationInput'>
Times
<input type='number' min='-1' max='500' placeholder='-1 for forever' step='1' id='timesInput'>
</span>
<span id='noteInputSpan' hidden>
<a target="_blank" href='https://newt.phys.unsw.edu.au/jw/graphics/notesinvert.GIF'>Notes C1 - C8</a>:
<select id='noteInput'>
</select>
</span>
</div>
<div id='connection-placement' class='column-center grey' data-state='connectionPlacement'>
<p>Place/Delete Connections</p>
<input type="radio" name="connection" value="one" checked> One-way connections<br>
<input type="radio" name="connection" value="two"> Two-way connections
</div>
<div id='live-mode' class='column-right grey' data-state='live'>
<p>Live Mode</p>
</div>
</div>
<span class ='white' id='loadExamples'>
Load Example:
<select placeholder='Select Example' id='exampleInput'>
<option value="" disabled selected>Select Example</option>
</select>
</span>
<span class ='white' id='sizeSpan'>
Size:
<input type='number' name='quantity' min='10' max='60' value='30' id='sizeInput'>
</span>
</body>
</html>