-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuse.html
More file actions
executable file
·111 lines (97 loc) · 4.89 KB
/
use.html
File metadata and controls
executable file
·111 lines (97 loc) · 4.89 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
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JGW6MNEWGH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JGW6MNEWGH');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>AbEC | Use</title>
<script src="scramble.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script>
MathJax = {
tex: {
tags: 'ams' // should be 'ams', 'none', or 'all'
}
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>
<link rel="icon" href="images/abec-logo-bg.png" />
<link rel="shortcut icon" href="images/abec-logo-bg.png" />
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css"
integrity="sha512-XgCw4Srl8lC1ECwcaHwAU0WnxQwHkqmInzg9wJLtGB7DRuMaXPuK2k9WJ2AwRDGdrgK9eJpZl2hUlLi2WQssmw=="
crossorigin="anonymous"
/>
<style>
h1 {
text-align: center;
background: #EEEEEE;
padding: .2em 1em;
border-top: 3px solid #666666;
border-bottom: 3px solid #999999;
}
</style>
</head>
<body>
<section>
<pre>
<div style="float: left">USE(1)</div><div style="float: right">USE(1)</div><div style="margin: 0 auto; width: 100%; text-align: center"><span id="top">AbEC - How to use</span></div>
<a href="./use/basicUsage/configurationFiles.html">>></a>
<div id="google_translate_element"></div>
<div class="myHead">
<span id="myName" >[<span id="dollar">~</span>]</span>$<span id="top"> Overview</span>
</div>
<div id="divName">
After cloning the repository in our computer and run the install.sh script (to see more about the installation come <a href="install.html" target="_blank">here</a>), we already have enough to run the framework. The directory created is <b><i>AbEC</i></b>, and inside of it contains all the files needed to configure and to use the framework.
<br><br>
There are two ways to run the framework, through the graphical interface and via the command line. In the <a href="use/basicUsage/running.html#running" >Running section</a> we are going to explain how to use both. But fisrt, lets take a look in the most important part
in the usage of the framework: The configuration files.<br><br>
As a adjustable framework, we need to configure it before use. This configuration is made through three configuration files, where we can set which components and what values for the hyper-parameters we want to use.
These files are:
<ul>
<li><b><span style="color:white">algoConfig.ini:</span></b> Where it is the configuration related to the functioning of the algorithm itself (e.g. Population size, optimizers, ...).</li><br>
<li><b><span style="color:white">expConfig.ini:</span></b> Where it is the configuration of the framework parameters (e.g. number of runs, path of the files, number of evaluations, ...).</li><br>
<li><b><span style="color:white">problemConfig.ini:</span></b> Where it is the configuration of problem (e.g. number of dimensions, dynamic or not, ...).</li><br>
</ul>
These files are located in <b><i><span style="color:white">AbEC/abec/</span></i></b>. After cloning the repository:
<div>
<hr>
<code>
<span style="color: green">$</span><span id="dollar"> cd AbEC/abec</span><br>
</code>
<hr>
</div>
<br>
Below is some documentation on how to use the framework.
</div>
<span style="color: green"><</span> <a href="index.html">[ Home ]</a>
<span style="color: green">></span> <a href="use/basicUsage/configurationFiles.html">2. [ Configuration files ]</a>
<span style="color: green">></span> <a href="use/basicUsage/fitnessFunction.html">3. [ Fitness function ]</a>
<span style="color: green">></span> <a href="use/basicUsage/running.html">4. [ Running ]</a>
<span style="color: green">></span> <a href="use/basicUsage/results.html">5. [ Results ]</a>
<span style="color: green">></span> <a href="use/basicUsage/example.html">6. [ Example ]</a>
<span style="color: green">></span> <a href="use/newComponents/newComponents.html">7. [ Adding new components ]</a>
<script type="text/javascript">
function setCookie(key, value, expiry) {
var expires = new Date();
expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000));
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
}
</script>
<span style="color: white">Be free to use this framework.</span><br>
<span style="color: green">AbEC © 2023.</span>
<div class="myHead"><blink></blink></div>
</div>
</pre>
</section>
</body>
</html>