Mercurial > repos > bgruening > sklearn_generalized_linear
comparison stacking_ensembles.py @ 28:63417d0acc72 draft
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 02087ce2966cf8b4aac9197a41171e7f986c11d1-dirty"
author | bgruening |
---|---|
date | Wed, 02 Oct 2019 03:43:23 -0400 |
parents | 9d3a024cf2da |
children | f12dc92b6699 |
comparison
equal
deleted
inserted
replaced
27:a9474cdda506 | 28:63417d0acc72 |
---|---|
9 import sys | 9 import sys |
10 import warnings | 10 import warnings |
11 from sklearn import ensemble | 11 from sklearn import ensemble |
12 | 12 |
13 from galaxy_ml.utils import (load_model, get_cv, get_estimator, | 13 from galaxy_ml.utils import (load_model, get_cv, get_estimator, |
14 get_search_params) | 14 get_search_params) |
15 | 15 |
16 | 16 |
17 warnings.filterwarnings('ignore') | 17 warnings.filterwarnings('ignore') |
18 | 18 |
19 N_JOBS = int(__import__('os').environ.get('GALAXY_SLOTS', 1)) | 19 N_JOBS = int(__import__('os').environ.get('GALAXY_SLOTS', 1)) |