-
Notifications
You must be signed in to change notification settings - Fork 1
/
Description.props
47 lines (32 loc) · 1.9 KB
/
Description.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Template Description file for a Weka package
#
# Package name (required)
PackageName=EvolutionarySearch
# Version (required)
Version=1.0.2
#Date (year-month-day)
Date=2017-29-01
# Title (required)
Title=An Evolutionary Algorithm (EA) to explore the space of attributes.
# Category (recommended)
Category=Attribute selection
# Author (required)
Author=Sebastian Luna Valero <sebastian.luna.valero@gmail.com>
# Maintainer (required)
Maintainer=Sebastian Luna Valero <sebastian.luna.valero@gmail.com>
# License (required)
License=GPL 3.0
# Description (required)
Description=EvolutionarySearch looks for a good subset of attributes in order to improve the classification accuracy of supervised learning techniques in classification problems with a huge number of attributes involved. It implements a (mu, lambda)-EA (Evolutionary Algorithm) with the following operators: uniform random initialization, binary tournament selection, single point crossover, bit flip mutation and generational replacement with elitism (i.e., the best individual is always kept). This package is properly designed to easily add new operators. Please, see the document entitled developers-guide.pdf available within this package.<br/><br/>For more information about similar algorithms see: <a href="http://neo.lcc.uma.es">the NEO Group website</a>
# Package URL for obtaining the package archive (required)
PackageURL=https://github.com/sebastian-luna-valero/EvolutionarySearch/releases/download/1.0.2/EvolutionarySearch.zip
# URL for further information
URL=http://neo.lcc.uma.es/
# Tell folks what has changed/improved with this release
Changes=This release fixes a bug prevented the user to set a mutation probability greater than 0.1
# Enhances various other packages ?
# Enhances=
# Related to other packages?
Related=attributeSelectionSearchMethods
# Dependencies (format: packageName (equality/inequality version_number)
Depends=weka (>=3.7.5)