-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReadMe.txt
More file actions
26 lines (15 loc) · 949 Bytes
/
ReadMe.txt
File metadata and controls
26 lines (15 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Use AISA optimization method with python and C-Extension:
--- Open your folder in terminal then run the following installation code to set up C extension
(C-extension is written to perform faster implementation of optimization code for large number of the parameters.)
sudo CC=gcc python3 setup.py install
--- use run_AISA_cPython for the simple Rosenbrock function optimization
You can see the plot of cost function by removing the comments.
--- Change your problem definition (Cost function) and modify the Cost_Function function and
initial parameters run_AISA_cPython file
--- Original paper ---
Bogar, Esref, and Selami Beyhan. "Adolescent Identity Search Algorithm
(AISA): A novel metaheuristic approach for solving optimization problems." Applied Soft
Computing 95 (2020): 106503.
https://www.sciencedirect.com/science/article/abs/pii/S1568494620304427
Remember that there is no guarantee to find the global minimum.
Good Luck!