@@ -8,7 +8,7 @@ alt="MAFESE"/>
88
99---
1010
11- [ ![ GitHub release] ( https://img.shields.io/badge/release-0.1.8 -yellow.svg )] ( https://github.com/thieu1995/mafese/releases )
11+ [ ![ GitHub release] ( https://img.shields.io/badge/release-0.1.9 -yellow.svg )] ( https://github.com/thieu1995/mafese/releases )
1212[ ![ Wheel] ( https://img.shields.io/pypi/wheel/gensim.svg )] ( https://pypi.python.org/pypi/mafese )
1313[ ![ PyPI version] ( https://badge.fury.io/py/mafese.svg )] ( https://badge.fury.io/py/mafese )
1414![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/mafese.svg )
@@ -29,38 +29,38 @@ MAFESE (Metaheuristic Algorithms for FEature SElection) is the biggest python li
2929problem using meta-heuristic algorithms.
3030
3131* ** Free software:** GNU General Public License (GPL) V3 license
32- * ** Total Wrapper-based (Metaheuristic Algorithms)** : > 180 methods
32+ * ** Total Wrapper-based (Metaheuristic Algorithms)** : > 200 methods
3333* ** Total Filter-based (Statistical-based)** : > 15 methods
3434* ** Total Embedded-based (Tree and Lasso)** : > 10 methods
3535* ** Total Unsupervised-based** : >= 4 methods
36- * ** Total classification dataset ** : >= 30 datasets
37- * ** Total regression dataset ** : >= 7 datasets
38- * ** Total performance metrics (as fitness)** : > 30 metrics
36+ * ** Total datasets ** : >= 30 (47 classifications and 7 regressions)
37+ * ** Total performance metrics ** : >= 61 (45 regressions and 16 classifications)
38+ * ** Total objective functions (as fitness functions )** : >= 61 (45 regressions and 16 classifications)
3939* ** Documentation:** https://mafese.readthedocs.io/en/latest/
40- * ** Python versions:** 3.7.x, 3.8.x, 3.9.x, 3.10.x, 3.11 .x
40+ * ** Python versions:** >= 3.7 .x
4141* ** Dependencies:** numpy, scipy, scikit-learn, pandas, mealpy, permetrics, plotly, kaleido
4242
4343
4444# Installation
4545
46- #### Install the [ current PyPI release] ( https://pypi.python.org/pypi/mafese ) :
46+ * Install the [ current PyPI release] ( https://pypi.python.org/pypi/mafese ) :
4747``` sh
48- $ pip install mafese==0.1.8
48+ $ pip install mafese==0.1.9
4949```
5050
51- #### Install directly from source code
51+ * Install directly from source code
5252``` sh
5353$ git clone https://github.com/thieu1995/mafese.git
5454$ cd mafese
5555$ python setup.py install
5656```
5757
58- #### In case, you want to install the development version from Github:
58+ * In case, you want to install the development version from Github:
5959``` sh
6060$ pip install git+https://github.com/thieu1995/mafese
6161```
6262
63- #### After installation, you can import MAFESE as any other Python module:
63+ After installation, you can import MAFESE as any other Python module:
6464
6565``` sh
6666$ python
@@ -235,9 +235,15 @@ feat_selector.evaluate(estimator=None, data=data, metrics=["AS", "PS", "RS"])
235235```
236236
2372371 ) Where do I find the supported metrics like above [ "AS", "PS", "RS"] . What is that?
238- You can find it here: https://github.com/thieu1995/permetrics
238+ You can find it here: https://github.com/thieu1995/permetrics or use this
239+ ``` python
240+ from mafese import MhaSelector
241+
242+ print (MhaSelector.SUPPORTED_REGRESSION_METRICS )
243+ print (MhaSelector.SUPPORTED_CLASSIFICATION_METRICS )
244+ ```
239245
240- 2 ) How do I know my Selector support which estimator? which methods?
246+ 3 ) How do I know my Selector support which estimator? which methods?
241247``` python
242248print (feat_selector.SUPPORT )
243249```
0 commit comments