-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further, in cfg alpha has been changed by beta (and the code that control that). Updated Readme.md
- Loading branch information
Showing
6 changed files
with
2,786 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<experiment> | ||
<process algorithm-type="eaglet.algorithm.MLCAlgorithm"> | ||
<rand-gen-factory seed="10"/> | ||
|
||
<parents-selector type="net.sf.jclec.selector.TournamentSelector"> | ||
<tournament-size>2</tournament-size> | ||
</parents-selector> | ||
|
||
<population-size>50</population-size> | ||
<max-of-generations>25</max-of-generations> | ||
|
||
<recombinator type="eaglet.recombinator.RandomCrossover" rec-prob="0.7" /> | ||
<mutator type="eaglet.mutator.RandomMutator" mut-prob="0.2" /> | ||
|
||
<number-classifiers>12</number-classifiers> | ||
<number-labels-classifier>3</number-labels-classifier> | ||
<prediction-threshold>0.5</prediction-threshold> | ||
<beta-member-selection>0.75</beta-member-selection> | ||
|
||
<dataset> | ||
<train-dataset>data/Yeast/Yeast-train1.arff</train-dataset> | ||
<test-dataset>data/Yeast/Yeast-test1.arff</test-dataset> | ||
<xml>data/Yeast/Yeast.xml</xml> | ||
</dataset> | ||
|
||
<listener type="eaglet.algorithm.MLCListener"> | ||
<report-dir-name>reports/EnsembleMLC</report-dir-name> | ||
<global-report-name>summaryEnsembleMLC</global-report-name> | ||
<report-frequency>10</report-frequency> | ||
</listener> | ||
</process> | ||
</experiment> |
Oops, something went wrong.