diff --git a/mvpa/clfs/libsvmc/svm.py b/mvpa/clfs/libsvmc/svm.py
index 9d4fda6..e745a07 100644
a
|
b
|
class SVM(_SVM): |
376 | 376 | # |
377 | 377 | # check if there is a libsvm version with configurable |
378 | 378 | # noise reduction ;) |
379 | | if hasattr(svm.svmc, 'svm_set_verbosity'): |
380 | | if __debug__ and "LIBSVM" in debug.active: |
381 | | debug("LIBSVM", "Setting verbosity for libsvm to 255") |
382 | | svm.svmc.svm_set_verbosity(255) |
383 | | else: |
384 | | svm.svmc.svm_set_verbosity(0) |
| 379 | #if hasattr(svm.svmc, 'svm_set_verbosity'): |
| 380 | # if __debug__ and "LIBSVM" in debug.active: |
| 381 | # debug("LIBSVM", "Setting verbosity for libsvm to 255") |
| 382 | # svm.svmc.svm_set_verbosity(255) |
| 383 | # else: |
| 384 | # svm.svmc.svm_set_verbosity(0) |
385 | 385 | |
386 | 386 | |
387 | 387 | |
diff --git a/mvpa/clfs/libsvmc/svmc.i b/mvpa/clfs/libsvmc/svmc.i
index 2b50c85..16bfa5d 100644
a
|
b
|
struct svm_model |
146 | 146 | // 0 if svm_model is created by svm_train |
147 | 147 | }; |
148 | 148 | |
149 | | /* one really wants to configure verbosity within python! */ |
150 | | void svm_set_verbosity(int verbosity_flag); |
151 | | |
152 | 149 | struct svm_model *svm_train(const struct svm_problem *prob, const struct svm_parameter *param); |
153 | 150 | |
154 | 151 | void svm_cross_validation(const struct svm_problem *prob, const struct svm_parameter *param, int nr_fold, double *target); |
diff --git a/setup.py b/setup.py
index b289285..ca6218a 100755
a
|
b
|
setup(name = 'pymvpa', |
109 | 109 | 'mvpa.misc.io', |
110 | 110 | 'mvpa.misc.plot', |
111 | 111 | 'mvpa.misc.fsl', |
112 | | 'mvpa.tests' ], |
| 112 | 'mvpa.tests', |
| 113 | 'mvpa.support'], |
113 | 114 | data_files = [('mvpa/data', ['mvpa/data'])], |
114 | 115 | scripts = glob( 'bin/*' ), |
115 | 116 | ext_modules = ext_modules |