Skip to content

Commit

Permalink
Merge pull request #49 from ealcobaca/complexity
Browse files Browse the repository at this point in the history
Complexity
  • Loading branch information
ealcobaca committed Dec 4, 2019
2 parents 27f6e41 + 6bf0b03 commit ccd4870
Show file tree
Hide file tree
Showing 8 changed files with 945 additions and 65 deletions.
12 changes: 12 additions & 0 deletions pymfe/_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@
import pymfe.relative as relative
import pymfe.clustering as clustering
import pymfe.model_based as model_based
import pymfe.complexity as complexity
# import pymfe.itemset as itemset
# import pymfe.concept as concept
import pymfe.scoring as scoring

VALID_VALUE_PREFIX = "VALID_"
Expand All @@ -102,6 +105,9 @@
"info-theory",
"relative",
"clustering",
"complexity",
# "itemset",
# "concept"
) # type: t.Tuple[str, ...]

GROUP_PREREQUISITES = (
Expand All @@ -112,6 +118,9 @@
None,
"landmarking",
None,
None,
# None,
# None
) # type: t.Tuple[t.Optional[str], ...]

VALID_MFECLASSES = (
Expand All @@ -122,6 +131,9 @@
info_theory.MFEInfoTheory,
relative.MFERelativeLandmarking,
clustering.MFEClustering,
complexity.MFEComplexity,
# itemset.MFEItemset,
# concept.MFEConcept
) # type: t.Tuple

VALID_SUMMARY = (*_summary.SUMMARY_METHODS, ) # type: t.Tuple[str, ...]
Expand Down
2 changes: 1 addition & 1 deletion pymfe/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'


__version__ = '0.1.1'
__version__ = '0.2rc0'

0 comments on commit ccd4870

Please sign in to comment.