-
Notifications
You must be signed in to change notification settings - Fork 0
/
gwo.p6
218 lines (148 loc) · 6.92 KB
/
gwo.p6
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/usr/bin/env perl6
use v6;
=for comment
Inicializa la matriz de posiciones de los lobos (agentes de búsqueda)
$cantidad_lobos : Cantidad de lobos a participar en la cazería.
$numero_parametros : Cantidad de parametros por problema
@limites_inferiores : Límites inferiores de los parámetros
@limites_superiores : Límites superiores de los parámetros
sub inicializar($cantidad_lobos, $numero_parametros, @limites_inferiores, @limites_superiores){
# Completo las filas
my @matrix = [];
eager loop (my $i = 0; $i < $cantidad_lobos; $i++) {
# Completo columnas
eager loop (my $j = 0; $j < $numero_parametros; $j++) {
#say(@limites_inferiores[$j]," " ,@limites_superiores[$j]);
# Selecciona un número random en el rango dado.
@matrix[$i][$j] = random(@limites_inferiores[$j] , @limites_superiores[$j]);
}
}
return @matrix
}
=for comment
Verifica que los nuevos valores calculados por el algoritmo no esten fuera del
espacio de parámetros designado para el experimento
sub retornar_espacio( $cantidad_parametros, $cantidad_lobos, @posiciones, @limites_inferiores, @limites_superiores){
eager loop (my $i = 0; $i < $cantidad_lobos; $i++){
eager loop (my $j = 0; $j < $cantidad_parametros; $j++){
if @posiciones[$i][$j] <= @limites_inferiores[$j] or @posiciones[$i][$j] >= @limites_superiores[$j] {
@posiciones[$i][$j] = random( @limites_inferiores[$j] , @limites_superiores[$j] );
}
}
}
}
=for comment
Se realiza una selección de parámetros para libsvm utilizando libsvm
sub libsvm_grey_wolf_optimizer($cantidad_lobos, $cantidad_iteraciones, $dataset){
my $INF = Inf;
my @alpha_position = [0, 0];
my $alpha_score = -Inf;
my @beta_position = [0, 0] ;
my $beta_score = -Inf;
my @delta_position = [0, 0] ;
my $delta_score = -Inf;
my $cantidad_parametros = 2;
# my @limites_inferiores= [2**-5, 2**-15];
# my @limites_superiores = [2**15, 2**3];
my @limites_inferiores = [-5, -15];
my @limites_superiores = [15, 3];
my @positions = inicializar($cantidad_lobos, $cantidad_parametros, @limites_inferiores, @limites_superiores);
eager loop (my $iteration = 0; $iteration < $cantidad_iteraciones; $iteration++){
say "ITERACION $iteration";
retornar_espacio( $cantidad_parametros, $cantidad_lobos, @positions, @limites_inferiores, @limites_superiores);
my @promesas = ();
# Crea los hilos y recolecta las promesas.
for 0..($cantidad_lobos-1) -> $position {
my $promesa = start conveniencia($position, @(@positions[$position]), $dataset);
push @promesas, $promesa;
}
# Espera la salida de las respuestas
my @resultados = await @promesas;
my $fitness = 0;
my $position = 0;
# Revisa los resultados de los hilos para asignar los nuevos lobos alfa,
# beta y delta
for @resultados -> $resultado {
# resultado es escalar, por lo que debo sacarlo uno a uno.
$position = $resultado[0];
$fitness = $resultado[1];
if $fitness == Inf {
}
# Muestra la situación actual
say "$position: A[$alpha_score] B[$beta_score] C[$delta_score] Fitness [$fitness] para C: @positions[$position][0] y Gamma: @positions[$position][1] ";
# Escribe a un archivo los puntos que se evaluaron.
# spurt "gwo.$dataset.$iteration", "@positions[$position][0],@positions[$position][1],$fitness\n", :append;
if ($fitness > $alpha_score) {
$alpha_score = $fitness;
@alpha_position = @(@positions[$position]);
}elsif ($fitness > $beta_score) {
$beta_score = $fitness;
@beta_position = @(@positions[$position]);
}elsif ($fitness > $delta_score) {
$delta_score = $fitness;
@delta_position = @(@positions[$position]);
}
}
#spurt "mejores.lobos.$iteration", "@alpha_position[0],@alpha_position[1]\n", :append;
#spurt "mejores.lobos.$iteration", "@beta_position[0],@beta_position[1]\n", :append;
#spurt "mejores.lobos.$iteration", "@delta_position[0],@delta_position[1]\n", :append;
# Recalcula el valor de a
my $a = Num(2 - $iteration) * Num(2 / $cantidad_iteraciones);
# Recalcula las posiciones de los lobos con respecto a los lobos alfa,
# beta y delta.
eager loop (my $i = 0; $i < $cantidad_lobos; $i++){
eager loop (my $j = 0; $j < $cantidad_parametros; $j++){
my $d_alpha = abs( (2*1.rand)* @alpha_position[$j] - @positions[$i][$j]);
my $x1 = @alpha_position[$j] - ((2.0*$a*1.rand) - 1.0) * $d_alpha;
my $d_beta = abs((2*1.rand)*@beta_position[$j] - @positions[$i][$j]);
my $x2 = @beta_position[$j] - ((2.0*$a*1.rand) - 1.0) * $d_beta;
my $d_delta = abs(2 * 1.rand * @delta_position[$j] - @positions[$i][$j]);
my $x3 = @delta_position[$j] - ((2.0*$a*1.rand) - 1.0) * $d_delta;
@positions[$i][$j] = ($x1 + $x2 + $x3) / 3.0;
}
}
}
# Retorna el mayor valor (pos del lobo gris).
return @alpha_position;
}
=for comment
Funcion de conveniencia para el algoritmo de gwo
sub conveniencia($position, @parametros, $dataset){
my $output = Inf;
# Comando a ejecutar
#my $libsvm_command = "svm-train -v 2 -s 0 -t 2 -c {2**@parametros[0]} -g {2**@parametros[1]} CasasolaTass.Freq20.2C.Casasola.libsvm";
#my $libsvm_command = "svm-train -v 2 -s 0 -t 2 -c {2**@parametros[0]} -g {2**@parametros[1]} $dataset";
my $libsvm_command = "svm-train -v 10 -s 0 -t 2 -c {2**@parametros[0]} -g {2**@parametros[1]} {$dataset}";
#say $position," ", @parametros[0]," ", @parametros[0];
#say $libsvm_command;
#say "";
#Ejecuta el comando en un shell
my $proc = shell($libsvm_command, :out);
# Saco el texto
my $libsvm_result = $proc.out.slurp-rest;
#Saco donde está el número
if $libsvm_result ~~ m:s/Cross Validation Accuracy \= (\d+[.\d+]?)\%/ {
$output = "$0";
}
# Retorno el valor final
return @($position, Num($output.Str));
}
=for comment
Random dentro de parámetros
sub random($limite_inferior, $limite_superior){
my $resultado = $limite_inferior + (1.rand() / (1 / ($limite_superior - $limite_inferior)));
return $resultado ;
}
sub main(){
if @*ARGS.elems < 3 {
die "no hay suficientes argumentos";
}
my $wolfs = Int(@*ARGS[0]);
my $runs = Int(@*ARGS[1]);
my $dataset = @*ARGS[2];
# $cantidad_lobos | $cantidad_iteraciones | Nombre del archivo de datos
my @resultado = libsvm_grey_wolf_optimizer($wolfs, $runs, $dataset );
say "$dataset.result --> C:@resultado[0],G:@resultado[1]\n";
spurt "$dataset-$wolfs-$runs.result", " C:@resultado[0],G:@resultado[1]\n";
}
main();