-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanntest.html
84 lines (47 loc) · 2.1 KB
/
anntest.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
78
79
80
81
82
83
84
<html>
<head>
<title>ANN</title>
<script src="neural.js"></script>
</head>
<body>
<div id="display"></div>
<div id="textBox"></div>
<script type='text/javascript'>
function button(i) {
newLocation = document.createElement('img');
newLocation.setAttribute('id', 'dot' + i);
newLocation.setAttribute('src', 'dot.gif');
document.getElementById('display').appendChild(newLocation);
currentLocation = document.getElementById('dot' + i);
currentLocation.style.top = 50;
currentLocation.style.left = 10 + (i * 15);
currentLocation.style.position = 'absolute';
currentLocation.height = 10;
currentLocation.width = 10;
currentLocation.currentState = 100;
this.imgObj = currentLocation;
currentLocation.onclick = function() {
if (document.getElementById('dot' + i).currentState == 100) {
document.getElementById('dot' + i).currentState = 0;
document.getElementById('dot' + i).style.opacity = 0;
document.getElementById('dot' + i).style.filter = 'alpha(opacity=0)';
} else {
document.getElementById('dot' + i).currentState = 100;
document.getElementById('dot' + i).style.opacity = 1;
document.getElementById('dot' + i).style.filter = 'alpha(opacity=100)';
}
}
}
document.getElementById('display').innerHTML = document.getElementById('display').innerHTML + '<br><br><br><br> <img src=\"dot.gif\" width=\"20\" height=\"10\" onclick=\"alert(testNetObj.evaluate([buttons[0].imgObj.currentState, buttons[1].imgObj.currentState, buttons[2].imgObj.currentState, buttons[3].imgObj.currentState, buttons[4].imgObj.currentState]));\">';
var buttons = new Array();
for (i=0; i<5; i++) {
buttons[i] = new button(i);
}
testNetArray = new Array(12, 24, 6, 2);
testNetObj = new neuralNetwork(null, buildNeuralPattern(testNetArray, 5));
document.getElementById('textBox').innerHTML = viewNetwork(testNetObj);
//alert(buttons[1].imgObj.currentState);
//alert(testNetObj.evaluate([buttons[0].imgObj.currentState, buttons[1].imgObj.currentState, buttons[2].imgObj.currentState, buttons[3].imgObj.currentState, buttons[4].imgObj.currentState]));
</script>
</body>
</html>