You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
310 B
Python

from __future__ import absolute_import
from __future__ import division
LIBSVM = LIBLINEAR = True
try:
from . import libsvm
from . import libsvmutil
except ImportError as e:
LIBSVM = False
raise e
try:
from . import liblinear
from . import liblinearutil
except:
LIBLINEAR = False