mirror of
https://github.com/Doctorado-ML/STree.git
synced 2025-08-15 15:36:00 +00:00
* Add first doc info to sources * Update doc to separate classes in api * Refactor build_predictor * Fix random_sate issue in non linear kernels * Refactor score method using base class implementation * Some quality refactoring * Fix codecov config. * Add sigmoid kernel * Refactor setup and add Makefile
12 lines
366 B
Python
12 lines
366 B
Python
from .Strees import Stree, Snode, Siterator, Splitter
|
|
|
|
__version__ = "1.0"
|
|
|
|
__author__ = "Ricardo Montañana Gómez"
|
|
__copyright__ = "Copyright 2020-2021, Ricardo Montañana Gómez"
|
|
__license__ = "MIT License"
|
|
__author_email__ = "ricardo.montanana@alu.uclm.es"
|
|
__url__ = "https://github.com/doctorado-ml/stree"
|
|
|
|
__all__ = ["Stree", "Snode", "Siterator", "Splitter"]
|