Package mvpa :: Package clfs :: Package sg
[hide private]
[frames] | no frames]

Source Code for Package mvpa.clfs.sg

 1  # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  # vi: set ft=python sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyMVPA package for the 
 6  #   copyright and license terms. 
 7  # 
 8  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 9  """Classifiers provied by shogun (sg) library""" 
10   
11  __docformat__ = 'restructuredtext' 
12   
13  if __debug__: 
14      from mvpa.base import debug 
15      debug('INIT', 'mvpa.clfs.sg') 
16   
17  from mvpa.clfs.sg.svm import SVM 
18   
19  if __debug__: 
20      debug('INIT', 'mvpa.clfs.sg end') 
21