-
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.
Modified README.md and included citation files.
- Loading branch information
Showing
6 changed files
with
60 additions
and
23 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
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,8 @@ | ||
@article{Moyano_EME, | ||
title = {An Evolutionary Approach to Build Ensembles of Multi-Label Classifiers}, | ||
author = {Jose M. Moyano and Eva L. Gibaja and Krzysztof J. Cios and Sebasti'{a}n Ventura}, | ||
journal = {Submitted to Information Fusion}, | ||
volume = {}, | ||
pages = {}, | ||
year = {2018} | ||
} |
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 @@ | ||
Jose M. Moyano, Eva L. Gibaja, Krzysztof J. Cios, Sebastián Ventura. "An Evolutionary Approach to Build Ensembles of Multi-Label Classifiers". Submitted to Information Fusion. (2018). |
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,33 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<experiment> | ||
<process algorithm-type="eme.EnsembleAlgorithm"> | ||
<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 rec-prob="0.8" type="eme.rec.UniformModelCrossover"/> | ||
<mutator mut-prob="0.2" type="eme.mut.PhiBasedIntraModelMutator"/> | ||
|
||
<number-classifiers>12</number-classifiers> | ||
<number-labels-classifier>3</number-labels-classifier> | ||
<prediction-threshold>0.5</prediction-threshold> | ||
<use-coverage>true</use-coverage> | ||
|
||
<dataset> | ||
<train-dataset>data/emotions/emotions_train_1.arff</train-dataset> | ||
<test-dataset>data/emotions/emotions_test_1.arff</test-dataset> | ||
<xml>data/emotions/emotions.xml</xml> | ||
</dataset> | ||
|
||
<listener> | ||
<report-dir-name>reports/EnsembleMLC</report-dir-name> | ||
<global-report-name>summaryEnsembleMLC</global-report-name> | ||
<report-frequency>1</report-frequency> | ||
</listener> | ||
</process> | ||
</experiment> |
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