-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (102 loc) · 4.93 KB
/
index.html
File metadata and controls
103 lines (102 loc) · 4.93 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/loaders.css/0.1.2/loaders.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.1.2/css/ion.rangeSlider.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.1.2/css/ion.rangeSlider.skinFlat.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/3.2.3/sweetalert2.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.1.0/math.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.1.2/js/ion.rangeSlider.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/loaders.css/0.1.2/loaders.css.min.js"></script>
<head>
<body style="background-color: #fff7cf">
<div id="toggle"></div>
<div class="menu closed">
</br>
<h1 style="margin-left: 20px">Setting For Training</h1>
<ul>
<li> Select The Dataset</li>
<form id="activations">
<input type="radio" name="myRadio" id="set1" value="1"/> Set 1 <br/>
<input type="radio" name="myRadio" id="set2" value="2"/> Set 2 (Without Pos.)
</form>
<li> Select The Data File For Training</li>
<select id="dataLd"></select>
</br>
</br>
<li> Amount of Gene</li>
<input type="text" id="amount" value="500"></input>
</br>
<li> Iteration for Training</li>
<input type="text" id="iteration" value="100"></input>
</br>
<li> Input The param.</li>
Crossover : <input type="text" id="phi1" value="0.5"></input>
Mutation : <input type="text" id="phi2" value="0.7"/></input>
<li>
</br>
<input class="set_btn" type="button" id="Btn_trn" value="Train"></input>
<input class="set_btn" type="button" id="startBtn" value="Close" class="startBtn"/>
</br>
</li>
</ul>
</div>
<!--Body-->
<div style="height: 105%; ">
<div>
<!--For canvas-->
<div class="container">
<canvas id="canvas" style="background-color: #fff; box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
"width="600" height="500" ></canvas>
<div style="background-color: #30d6e0; width: 100%; height: 100px; margin-top:20px; border-radius:10px;">
<div class="pos" id="xpos"><b id="CPos">X :</div>
<div class="pos" id="ypos"><b id="CPos">Y :</div>
<div class="pos" id="angle"><b id="CPos">Angle:</div>
</div>
</div>
<div class="set">
<div style="width: 60%; height: 50px; margin: auto; margin-top: 20px; text-align: center;">
<p class="fontSet">Background</p>
</div>
<div class="setBg">
<form id="bg">
<input type="radio" name="myRadio" id="set1" value="1"/> Grid<br/>
<input type="radio" name="myRadio" id="set2" value="2" /> Mazic<br/>
<input type="radio" name="myRadio" id="set2" value="3" /> Color
</form>
</div>
<div style="margin: 20px; text-align: center;" >
<input type="button" id="go" value="Go!" class="set_btn" ></input>
</div>
</div>
<!--The result Data and Reading Data-->
<div class="DataSetBg" id="loadSet">
<div style="height: 210px; overflow: scroll;">
<table class="dataTable" id="dataTable"></table>
</div>
</div>
</div>
</div>
<script>
$("#toggle").click(function() {
$(".menu").toggleClass("closed");
});
$("#startBtn").click(function() {
$(".menu").toggleClass("closed");
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.1.0/math.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.1.2/js/ion.rangeSlider.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-circle-progress/1.1.3/circle-progress.min.js"></script>
<script type="text/javascript" src="js/fileLoader.js"></script>
<script type="text/javascript" src="js/elementContr.js"></script>
<script type="text/javascript" src="js/showDatas.js"></script>
<script type="text/javascript" src="js/Canvas.js"></script>
<script type="text/javascript" src="js/Agent.js"></script>
<script type="text/javascript" src="js/GA.js"></script>
<script type="text/javascript" src="js/RBF.js"></script>
<script type="text/javascript" src="js/Line.js"></script>
</body>
</html>