Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
thieu1995 committed Jul 13, 2023
1 parent 681be93 commit e3b732e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
---


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

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

Install the [current PyPI release](https://pypi.python.org/pypi/mafese):
```sh
$ pip install mafese==0.1.6
$ pip install mafese==0.1.7
```

### Install directly from source code
Expand All @@ -61,9 +61,14 @@ docs
examples
mafese
data/
Arrhythmia.csv
BreastCancer.csv
...
cls/
aggregation.csv
Arrhythmia.csv
...
reg/
boston-housing.csv
diabetes.csv
...
wrapper/
mha.py
recursive.py
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Welcome to MAFESE's documentation!
==================================

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

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

* **Free software:** GNU General Public License (GPL) V3 license
* **Total Wrapper-based (Metaheuristic Algorithms)**: > 180 methods
* **Total Filter-based (Statistical-based)**: > 12 methods
* **Total Filter-based (Statistical-based)**: > 15 methods
* **Total Embedded-based (Tree and Lasso)**: > 10 methods
* **Total Unsupervised-based**: >= 4 methods
* **Total classification dataset**: >= 30 datasets
Expand Down
2 changes: 1 addition & 1 deletion docs/source/pages/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Installation

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

$ pip install mafese==0.1.6
$ pip install mafese==0.1.7


* Install directly from source code::
Expand Down
2 changes: 1 addition & 1 deletion mafese/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Github: https://github.com/thieu1995 %
# --------------------------------------------------%

__version__ = "0.1.6"
__version__ = "0.1.7"

from mafese.utils.data_loader import Data, get_dataset
from mafese.filter import FilterSelector
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def readme():

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

0 comments on commit e3b732e

Please sign in to comment.