I know that my question is general, but I am new to AI. I have an experiment with some parameters (almost 6 parameters). Each of them is independent, and I want to find the optimal solution for the maximum or minimum output function. However, if I want to do this in a traditional programming technique, it will take a lot of time, since I will use six nested loops.
I just want to know which AI method to use for this problem? Genetic Algorithm? Neural network? Machine learning?
Update
In fact, a problem can have more than one rating function. It will have one function that we need to minimize (cost) and another function that we want to maximize (power). Perhaps other functions can be added. Example: Building a glass window can be done in millions of ways. However, we need the strongest window at the lowest cost. There are many parameters that affect the pressure capacity in a window, for example, glass strength, height and width, window tilt. Obviously, if we go to extreme cases (the largest strong glass with the smallest width and height and zero tilt), the window will be extremely strong. However, the cost of this will be very high.
I want to study the interaction between parameters in a certain range.
source
share