Documentation Index
Fetch the complete documentation index at: https://mintlify.com/alexplatasl/dplbnde/llms.txt
Use this file to discover all available pages before exploring further.
jade implements JADE: adaptive DE with the current-to-pbest mutation strategy. F and CR are adapted each generation using Cauchy and Normal distributions centered on success histories. An optional external archive stores recently replaced solutions to widen diversity in mutation.
Usage
Parameters
Population size. Must be > 5.
Maximum generations.
Data frame containing features and class variable.
Name of the class variable column.
Adaptation rate for updating mean F and CR. Must be in [0, 0.2].
BN structure:
"nb", "tan", "tancl", or "hc".Fraction of population used as p-best pool for mutation. Must be in (0, 1].
Optional custom BN topology (edges × 2 matrix: from, to).
If
TRUE, replaced individuals are stored in an external archive used in mutation.Print progress every this many generations.
...
Extra arguments passed to
bnclassify::tan_cl or bnclassify::tan_hc.Return value
Object of classDE with fields: Best, BestCLL, pobFinal, CLLPobFinal, N.evals, convergence, evaluations.