File: __init__.py

package info (click to toggle)
orange3 3.40.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,908 kB
  • sloc: python: 162,745; ansic: 622; makefile: 322; sh: 93; cpp: 77
file content (23 lines) | stat: -rw-r--r-- 457 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Pull members from modules to Orange.modelling namespace
# pylint: disable=wildcard-import

from .base import *

from .ada_boost import *
from .constant import *
from .knn import *
from .linear import *
from .neural_network import *
from .randomforest import *
from .svm import *
from .tree import *
from .column import *
try:
    from .catgb import *
except ImportError:
    pass
from .gb import *
try:
    from .xgb import *
except ImportError:
    pass