1
2 """
3 The :mod:`parsimony` module includes several different machine learning methods
4 with structured and sparse penalties.
5
6 Created on Thu Feb 21 15:14:15 2013
7
8 Copyright (c) 2013-2014, CEA/DSV/I2BM/Neurospin. All rights reserved.
9
10 @author: Tommy Löfstedt
11 @email: lofstedt.tommy@gmail.com
12 @license: BSD 3-clause.
13 """
14 from . import algorithms
15 from . import datasets
16 from . import estimators
17 from . import functions
18 from . import utils
19
20 __version__ = "0.2.2"
21
22 __all__ = ["algorithms", "datasets", "estimators", "functions", "utils"]
23