1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# Pull members from modules to Orange.classification namespace
# pylint: disable=wildcard-import,broad-except
from .base_classification import (ModelClassification as Model,
LearnerClassification as Learner,
SklModelClassification as SklModel,
SklLearnerClassification as SklLearner)
from .knn import *
from .logistic_regression import *
from .majority import *
from .naive_bayes import *
from .random_forest import *
from .softmax_regression import *
from .svm import *
from .tree import *
from .simple_tree import *
from .simple_random_forest import *
from .outlier_detection import *
from .rules import *
from .sgd import *
from .neural_network import *
from .calibration import *
from .scoringsheet import *
try:
from .catgb import *
except Exception:
pass
from .gb import *
try:
from .xgb import *
except Exception:
pass
|