Explorar el Código

update number of evaluated solutions for learning process

Jérôme BUISINE hace 4 años
padre
commit
2a70d89dfd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      find_best_attributes_surrogate_openML_multi_specific.py

+ 1 - 1
find_best_attributes_surrogate_openML_multi_specific.py

@@ -243,7 +243,7 @@ def main():
     policy = RandomPolicy(operators)
 
     # custom start surrogate variable based on problem size
-    p_start = int(0.2 * problem_size)
+    p_start = int(problem_size / p_k_division * 3) # 3 \times number of features for each sub-model
 
     # fixed minimal number of real evaluations
     if p_start < 50: