InsideForest 0.3.0__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- insideforest-0.3.2/InsideForest/__init__.py +24 -0
- insideforest-0.3.2/InsideForest/cluster_selector.py +1097 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest/descrip.py +173 -96
- insideforest-0.3.2/InsideForest/inside_forest.py +571 -0
- insideforest-0.3.2/InsideForest/labels.py +224 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest/metadata.py +70 -18
- insideforest-0.3.2/InsideForest/models.py +96 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest/regions.py +501 -444
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest/trees.py +216 -99
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest.egg-info/PKG-INFO +1 -1
- insideforest-0.3.2/InsideForest.egg-info/SOURCES.txt +31 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest.egg-info/top_level.txt +1 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/PKG-INFO +1 -1
- {insideforest-0.3.0 → insideforest-0.3.2}/README.md +77 -8
- insideforest-0.3.2/experiments/__init__.py +0 -0
- insideforest-0.3.2/experiments/benchmark.py +318 -0
- insideforest-0.3.2/experiments/benchmark_get_rangos.py +47 -0
- insideforest-0.3.2/experiments/rf_param_benchmark.py +141 -0
- insideforest-0.3.2/experiments/summary_benchmark.py +40 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/setup.py +1 -1
- insideforest-0.3.2/tests/test_chimera_values_selector.py +27 -0
- insideforest-0.3.2/tests/test_cluster_selector.py +25 -0
- insideforest-0.3.2/tests/test_descrip_helpers.py +89 -0
- insideforest-0.3.2/tests/test_eps_search_perf.py +52 -0
- insideforest-0.3.2/tests/test_inside_forest_fit_predict.py +196 -0
- insideforest-0.3.2/tests/test_inside_forest_params.py +59 -0
- insideforest-0.3.2/tests/test_inside_forest_regressor_fit_predict.py +181 -0
- insideforest-0.3.2/tests/test_iou_equivalence.py +63 -0
- insideforest-0.3.2/tests/test_trees.py +68 -0
- insideforest-0.3.0/InsideForest/__init__.py +0 -14
- insideforest-0.3.0/InsideForest/inside_forest.py +0 -110
- insideforest-0.3.0/InsideForest/labels.py +0 -126
- insideforest-0.3.0/InsideForest/models.py +0 -49
- insideforest-0.3.0/InsideForest.egg-info/SOURCES.txt +0 -16
- {insideforest-0.3.0 → insideforest-0.3.2}/InsideForest.egg-info/dependency_links.txt +0 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/LICENSE +0 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/setup.cfg +0 -0
- {insideforest-0.3.0 → insideforest-0.3.2}/tests/test_descrip.py +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from .labels import Labels
|
|
2
|
+
from .regions import Regions
|
|
3
|
+
from .trees import Trees
|
|
4
|
+
from .models import Models
|
|
5
|
+
from .inside_forest import InsideForestClassifier, InsideForestRegressor
|
|
6
|
+
from .metadata import (
|
|
7
|
+
MetaExtractor,
|
|
8
|
+
Profile,
|
|
9
|
+
parse_rule_string,
|
|
10
|
+
token_from_condition,
|
|
11
|
+
conditions_to_tokens,
|
|
12
|
+
experiments_from_df2,
|
|
13
|
+
run_experiments,
|
|
14
|
+
)
|
|
15
|
+
from .cluster_selector import (
|
|
16
|
+
MenuClusterSelector,
|
|
17
|
+
balance_lists_n_clusters,
|
|
18
|
+
max_prob_clusters,
|
|
19
|
+
match_class_distribution,
|
|
20
|
+
ChimeraValuesSelector,
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
# Backward compatibility
|
|
24
|
+
InsideForest = InsideForestClassifier
|