1
2 """
3 Created on Thu Feb 8 09:22:00 2013
4
5 Copyright (c) 2013-2014, CEA/DSV/I2BM/Neurospin. All rights reserved.
6
7 @author: Tommy Löfstedt and Edouard Duchesnay
8 @email: lofstedt.tommy@gmail.com, edouard.duchesnay@cea.fr
9 @license: BSD 3-clause.
10 """
11 from .utils import time_cpu, time_wall, time, deprecated
12 from .utils import optimal_shrinkage, AnonymousClass
13 from .check_arrays import check_arrays
14 from .plot import plot_map2d
15 from .classif_label import class_weight_to_sample_weight, check_labels
16 from . import consts
17 from . import linalgs
18 from . import maths
19 from . import resampling
20 from . import start_vectors
21 from . import stats
22
23
24 __all__ = ["time_cpu", "time_wall", "time", "deprecated",
25 "check_arrays",
26 "optimal_shrinkage", "AnonymousClass",
27 "plot_map2d",
28 "class_weight_to_sample_weight", "check_labels",
29 "consts", "maths", "linalgs", "resampling", "start_vectors",
30 "stats"]
31