w4k2/stream-learn

View on GitHub
strlearn/ensembles/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
from .SEA import SEA
from .AWE import AWE
from .AUE import AUE
from .WAE import WAE
from .OnlineBagging import OnlineBagging
from .OOB import OOB
from .UOB import UOB
from .DWM import DWM
from .REA import REA
from .KMC import KMC
from .CDS import CDS
from .NIE import NIE
from .OUSE import OUSE
from .KUE import KUE
from .ROSE import ROSE
from .base import StreamingEnsemble

__all__ = [
    "OnlineBagging",
    "OOB",
    "SEA",
    "UOB",
    "WAE",
    "AWE",
    "AUE",
    "DWM",
    "REA",
    "KMC",
    "CDS",
    "NIE",
    "OUSE",
    "KUE",
    "ROSE",
    "StreamingEnsemble"
]