Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature new DE algorithms #341

Open
wants to merge 35 commits into
base: main
Choose a base branch
from

Conversation

bruscalia
Copy link
Collaborator

Hi, Julian!

This is the PR that includes several DE-based algorithms including fixes for compatibility purposes. Moreover, it contains the new survival operators (also included in a separate PR). You might ignore the other if this one is accepted.

I modified the previous DE file renaming it to de_ep.py and the corresponding algorithm to EPDE to preserve the parameter control strategy previously implemented. The DE basic algorithm includes now repair strategies in the native DE reproduction that can be passed as either str or callable in the de_repair argument. New parent selection schemes are also included. Dithering can be used within any range of F user-specified if F is passed as an iterable. Furthermore, jitter can be used with user-specified values for gamma.

In this PR, DEX and DES are (re)modified to be compatible with new Crossover and Selection standards from pymoo 0.6.0 but preserve the fix in degenerate DE reproduction from the older versions. Also, a class DEM is created to the DE "mutation" (or "first crossover") although it inherits from pymoo's Crossover. Both DEX and DEM are included in real crossover tests and have been verified to be compatible with GA.

The other algorithms include:

NSDE: That combined DE reproduction operators to NSGA-II survival (mu + lambda).
GDE3: Similar to NSDE but with one-to-one comparison before mu + lambda.
NSDE-R: Non-dominated Sorting Differential Evolution based on Reference directions (Reddy & Dulikravich, 2019). It combines DE with NSGA-III.
Other GDE3 variants are included as additional classes using the new crowding metrics in RankAndCrowding. They are: GDE3MNN, GDE32NN, GDE3PCD.

Feel free to reach out to me if you'd like to discuss the changes in detail.

My kind regards,

Bruno Scalia

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants