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.
lshade implements L-SHADE: history-based parameter adaptation (like JADE) combined with Linear Population Size Reduction (LPSR), which shrinks the population from NP down to 4 over the course of evolution. This concentrates evaluations on the most promising individuals as the search matures.
Usage
Parameters
Initial population size. Reduced linearly to 4 over G generations.
Maximum generations.
Data frame containing features and the class variable.
Name of the class variable column.
Learning rate for history memory update. Must be in [0, 0.2].
BN structure:
"nb", "tan", "tancl", or "hc".Fraction of best individuals used in current-to-pbest mutation.
Optional custom BN topology (edges × 2 matrix: from, to).
Print progress every this many generations.
...
Extra arguments forwarded to
bnclassify::tan_cl or bnclassify::tan_hc.Return value
Object of classDE with fields: Best, BestCLL, pobFinal, CLLPobFinal, N.evals, convergence, evaluations.