Skip to content

Commit e3b732e

Browse files
committed
Release new version
1 parent 681be93 commit e3b732e

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

README.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66

7-
[![GitHub release](https://img.shields.io/badge/release-0.1.6-yellow.svg)](https://github.com/thieu1995/mafese/releases)
7+
[![GitHub release](https://img.shields.io/badge/release-0.1.7-yellow.svg)](https://github.com/thieu1995/mafese/releases)
88
[![Wheel](https://img.shields.io/pypi/wheel/gensim.svg)](https://pypi.python.org/pypi/mafese)
99
[![PyPI version](https://badge.fury.io/py/mafese.svg)](https://badge.fury.io/py/mafese)
1010
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mafese.svg)
@@ -26,7 +26,7 @@ using meta-heuristic algorithms.
2626

2727
* **Free software:** GNU General Public License (GPL) V3 license
2828
* **Total Wrapper-based (Metaheuristic Algorithms)**: > 180 methods
29-
* **Total Filter-based (Statistical-based)**: > 12 methods
29+
* **Total Filter-based (Statistical-based)**: > 15 methods
3030
* **Total Embedded-based (Tree and Lasso)**: > 10 methods
3131
* **Total Unsupervised-based**: >= 4 methods
3232
* **Total classification dataset**: >= 30 datasets
@@ -43,7 +43,7 @@ using meta-heuristic algorithms.
4343

4444
Install the [current PyPI release](https://pypi.python.org/pypi/mafese):
4545
```sh
46-
$ pip install mafese==0.1.6
46+
$ pip install mafese==0.1.7
4747
```
4848

4949
### Install directly from source code
@@ -61,9 +61,14 @@ docs
6161
examples
6262
mafese
6363
data/
64-
Arrhythmia.csv
65-
BreastCancer.csv
66-
...
64+
cls/
65+
aggregation.csv
66+
Arrhythmia.csv
67+
...
68+
reg/
69+
boston-housing.csv
70+
diabetes.csv
71+
...
6772
wrapper/
6873
mha.py
6974
recursive.py

docs/source/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to MAFESE's documentation!
77
==================================
88

9-
.. image:: https://img.shields.io/badge/release-0.1.6-yellow.svg
9+
.. image:: https://img.shields.io/badge/release-0.1.7-yellow.svg
1010
:target: https://github.com/thieu1995/mafese/releases
1111

1212
.. image:: https://img.shields.io/pypi/wheel/gensim.svg
@@ -57,7 +57,7 @@ using meta-heuristic algorithms.
5757

5858
* **Free software:** GNU General Public License (GPL) V3 license
5959
* **Total Wrapper-based (Metaheuristic Algorithms)**: > 180 methods
60-
* **Total Filter-based (Statistical-based)**: > 12 methods
60+
* **Total Filter-based (Statistical-based)**: > 15 methods
6161
* **Total Embedded-based (Tree and Lasso)**: > 10 methods
6262
* **Total Unsupervised-based**: >= 4 methods
6363
* **Total classification dataset**: >= 30 datasets

docs/source/pages/quick_start.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Installation
44

55
* Install the `current PyPI release <https://pypi.python.org/pypi/mafese />`_::
66

7-
$ pip install mafese==0.1.6
7+
$ pip install mafese==0.1.7
88

99

1010
* Install directly from source code::

mafese/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Github: https://github.com/thieu1995 %
55
# --------------------------------------------------%
66

7-
__version__ = "0.1.6"
7+
__version__ = "0.1.7"
88

99
from mafese.utils.data_loader import Data, get_dataset
1010
from mafese.filter import FilterSelector

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def readme():
1515

1616
setup(
1717
name="mafese",
18-
version="0.1.6",
18+
version="0.1.7",
1919
author="Thieu",
2020
author_email="[email protected]",
2121
description="MAFESE: Metaheuristic Algorithm for Feature Selection - An Open Source Python Library",
@@ -30,7 +30,7 @@ def readme():
3030
"Differential evolution (DE)", "Simulated annealing", "Grey wolf optimizer (GWO)", "Whale Optimization Algorithm (WOA)",
3131
"confusion matrix", "recall", "precision", "accuracy", "K-Nearest Neighbors", "random forest",
3232
"support vector machine", "pearson correlation coefficient (PCC)", "spearman correlation coefficient (SCC)",
33-
"relief", "multi-objectives optimization problems", "Stochastic optimization", "Global optimization",
33+
"relief", "relief-f", "multi-objectives optimization problems", "Stochastic optimization", "Global optimization",
3434
"Convergence analysis", "Search space exploration", "Local search", "Computational intelligence", "Robust optimization",
3535
"Performance analysis", "Intelligent optimization", "Simulations"],
3636
url="https://github.com/thieu1995/mafese",

0 commit comments

Comments
 (0)