mirror of
https://github.com/Doctorado-ML/STree.git
synced 2025-08-16 07:56:06 +00:00
Update comments and README.md
This commit is contained in:
@@ -73,3 +73,7 @@ python -m unittest -v stree.tests
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
STree is [MIT](https://github.com/doctorado-ml/stree/blob/master/LICENSE) licensed
|
STree is [MIT](https://github.com/doctorado-ml/stree/blob/master/LICENSE) licensed
|
||||||
|
|
||||||
|
## Reference
|
||||||
|
|
||||||
|
R. Montañana, J. A. Gámez, J. M. Puerta, "STree: a single multi-class oblique decision tree based on support vector machines.", 2021 LNAI 12882, pg. 54-64
|
||||||
|
@@ -202,7 +202,8 @@ class Splitter:
|
|||||||
max_features < num_features). Supported strategies are: “best”: sklearn
|
max_features < num_features). Supported strategies are: “best”: sklearn
|
||||||
SelectKBest algorithm is used in every node to choose the max_features
|
SelectKBest algorithm is used in every node to choose the max_features
|
||||||
best features. “random”: The algorithm generates 5 candidates and
|
best features. “random”: The algorithm generates 5 candidates and
|
||||||
choose the best (max. info. gain) of them. "mutual": Chooses the best
|
choose the best (max. info. gain) of them. “trandom”: The algorithm
|
||||||
|
generates only one random combination. "mutual": Chooses the best
|
||||||
features w.r.t. their mutual info with the label. "cfs": Apply
|
features w.r.t. their mutual info with the label. "cfs": Apply
|
||||||
Correlation-based Feature Selection. "fcbf": Apply Fast Correlation-
|
Correlation-based Feature Selection. "fcbf": Apply Fast Correlation-
|
||||||
Based, by default None
|
Based, by default None
|
||||||
|
@@ -82,7 +82,8 @@ class Stree(BaseEstimator, ClassifierMixin):
|
|||||||
max_features < num_features). Supported strategies are: “best”: sklearn
|
max_features < num_features). Supported strategies are: “best”: sklearn
|
||||||
SelectKBest algorithm is used in every node to choose the max_features
|
SelectKBest algorithm is used in every node to choose the max_features
|
||||||
best features. “random”: The algorithm generates 5 candidates and
|
best features. “random”: The algorithm generates 5 candidates and
|
||||||
choose the best (max. info. gain) of them. "mutual": Chooses the best
|
choose the best (max. info. gain) of them. “trandom”: The algorithm
|
||||||
|
generates only one random combination. "mutual": Chooses the best
|
||||||
features w.r.t. their mutual info with the label. "cfs": Apply
|
features w.r.t. their mutual info with the label. "cfs": Apply
|
||||||
Correlation-based Feature Selection. "fcbf": Apply Fast Correlation-
|
Correlation-based Feature Selection. "fcbf": Apply Fast Correlation-
|
||||||
Based , by default "random"
|
Based , by default "random"
|
||||||
@@ -128,7 +129,7 @@ class Stree(BaseEstimator, ClassifierMixin):
|
|||||||
References
|
References
|
||||||
----------
|
----------
|
||||||
R. Montañana, J. A. Gámez, J. M. Puerta, "STree: a single multi-class
|
R. Montañana, J. A. Gámez, J. M. Puerta, "STree: a single multi-class
|
||||||
oblique decision tree based on support vector machines.", 2021 LNAI...
|
oblique decision tree based on support vector machines.", 2021 LNAI 12882
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
Reference in New Issue
Block a user