Population-based incremental learning: Difference between revisions

Content deleted Content added
Citation bot (talk | contribs)
m Add: citeseerx. Removed URL that duplicated unique identifier. | You can use this bot yourself. Report bugs here. | Activated by User:AManWithNoPlan | via #UCB_webform
change source to syntaxhighlight
 
Line 46:
This is a part of source code implemented in [[Java (programming language)|Java]]. In the paper, learnRate = 0.1, negLearnRate = 0.075, mutProb = 0.02, and mutShift = 0.05 is used. N = 100 and ITER_COUNT = 1000 is enough for a small problem.
 
<sourcesyntaxhighlight lang="java">
public void optimize() {
final int totalBits = getTotalBits();
Line 111:
}
}
</syntaxhighlight>
</source>
 
==See also==