jMetalPy icon indicating copy to clipboard operation
jMetalPy copied to clipboard

A framework for single/multi-objective optimization with metaheuristics

Results 51 jMetalPy issues
Sort by recently updated
recently updated
newest added

Since these are stochastic algorithms, and every time I run it I obtain a different solution, how can I set the seed in order to make solution replicable?

Hi, It seems that the HTML file generated by `export_to_html()` is not using the right div for the event `myPlot.on('plotly_click', function(data)` The plot itself is embed in a div that...

in solution class, only __copy__ is implemented, while in crossover class, copy.deepcopy is used.

Hello everyone! I created an algorithm and implemented others in Jmetal Java, but I ran my tests a little differently. For each benchmark function and each algorithm, my results are...

hi and tnx for great project. can u explain if our model have multiple constraint and objective function how we can implement it and use Jmetalpy?

I am trying to run a single objective problem with simulated annealing. any way to speed up using dask? Thank you!

When i use DifferentialEvolutionCrossover in NSGA III, the crossover does not work. The "current_individual" of DifferentialEvolutionCrossover isn't assigned in NSGA III or GeneticAlgorithm.

How can I mix variables of different types or how can I set which varibles are discrete and which are contiguous like [0, 1, 0, 2, 1.2, 0.2, 3.6, 1.5]...

Hi, I am trying to run a multi-objective optimization on my problem which looks like this: --------------------------------------------------------------------------------------------------- class LoadOptCWT3(FloatProblem): def __init__(self): super(LoadOptCWT3, self).__init__() self.number_of_variables = 23 self.number_of_objectives = 2 self.number_of_constraints...

Our models are based on surrogate models to approximate the computationally expensive objective functions. Hence, derivative information, which is generally unavailable for black-box simulation ob- jective functions, is not available....