-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from ealcobaca/0.1.x
0.1.x
- Loading branch information
Showing
10 changed files
with
261 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,76 @@ | ||
What is new on pymfe package? | ||
############################# | ||
|
||
Version 0.1.1 | ||
------------- | ||
* Bugs solved | ||
|
||
* False positive of mypy fixed | ||
|
||
* Contributing link now is working | ||
|
||
* We added a note about how to add a new meta-feature | ||
|
||
* Modified 'verbosity' (from 'extract' method) argument type from boolean to | ||
integer. Now the user can choose the desired level of verbosity. | ||
Verbosity = 1 means that a progress bar will be shown during the metafeature | ||
extraction process. Verbosity = 2 maintains all the previous verbose messages | ||
(i.e., it logs every "extract" step) plus additional information about the | ||
current percentage of progress done so far. | ||
|
||
|
||
Version 0.1.0 | ||
------------- | ||
- Meta-feature groups available: | ||
- Relative landmarking | ||
- Clustering-based | ||
- Relative subsampling landmarking | ||
- Makefile to help developers | ||
* Meta-feature groups available | ||
|
||
* Relative landmarking | ||
|
||
* Clustering-based | ||
|
||
* Relative subsampling landmarking | ||
|
||
* Makefile to help developers | ||
|
||
* New Functionalities | ||
|
||
* Now you can list available groups | ||
|
||
- New Functionalities | ||
- Now you can list available groups | ||
- Now you can list available metafeatures | ||
* Now you can list available metafeatures | ||
|
||
- Documentation | ||
- New examples | ||
- New README | ||
* Documentation | ||
|
||
- Bugs | ||
- Problems in parse categoric metafeatures solved | ||
- Categorization of attributes with constant values solved | ||
* New examples | ||
|
||
- Test | ||
- Several new tests added | ||
* New README | ||
|
||
* Bugs | ||
|
||
* Problems in parse categoric metafeatures solved | ||
|
||
* Categorization of attributes with constant values solved | ||
|
||
* Test | ||
|
||
* Several new tests added | ||
|
||
Version 0.0.3 | ||
------------- | ||
- Documentation improvement | ||
- Setup improvement | ||
* Documentation improvement | ||
|
||
* Setup improvement | ||
|
||
|
||
Initial Release | ||
--------------- | ||
- Meta-feature groups available: | ||
- Simple | ||
- Statistical | ||
- Information-theoretic | ||
- Model-based | ||
- Landmarking | ||
* Meta-feature groups available: | ||
|
||
* Simple | ||
|
||
* Statistical | ||
|
||
* Information-theoretic | ||
|
||
* Model-based | ||
|
||
* Landmarking | ||
|
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
26 changes: 26 additions & 0 deletions
26
examples/03_miscellaneous_examples/plot_metafeature_description.py
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,26 @@ | ||
""" | ||
Metafeature description | ||
======================= | ||
In this example, we will show you how to list the types of metafeatures, | ||
groups, and summaries available. | ||
""" | ||
|
||
from pymfe.mfe import MFE | ||
|
||
|
||
############################################################################### | ||
# This function shows the description of all metafeatures. | ||
MFE.metafeature_description() | ||
|
||
############################################################################### | ||
# You can select a specific group. | ||
MFE.metafeature_description(groups=["general", "statistical"]) | ||
|
||
############################################################################### | ||
# You can sort the metafeatures by name. | ||
MFE.metafeature_description(sort=True) | ||
|
||
############################################################################### | ||
# You also can get the table instead of printing it. | ||
MFE.metafeature_description(print_table=False) |
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 |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
# 'X.Y.dev0' is the canonical version of 'X.Y.dev' | ||
|
||
|
||
__version__ = '0.1.0' | ||
__version__ = '0.1.1' |
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
Oops, something went wrong.