File tree 3 files changed +42
-32
lines changed
3 files changed +42
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+
2
+ The selection project
3
+ =====================
4
+
5
+ This project contains software for selective inference, with emphasis on
6
+ selective inference in regression.
7
+
8
+ Some key references
9
+ -------------------
10
+
11
+ - ``A significance test for the lasso ``: http://arxiv.org/abs/1301.7161
12
+ - ``Tests in adaptive regression via the Kac-Rice formula ``:
13
+ http://arxiv.org/abs/1308.3020
14
+ - ``Post-selection adaptive inference for Least Angle Regression and the Lasso ``:
15
+ http://arxiv.org/abs/1401.3889
16
+ - ``Exact post-selection inference with the lasso ``:
17
+ http://arxiv.org/abs/1311.6238
18
+ - ``Exact Post Model Selection Inference for Marginal Screening ``:
19
+ http://arxiv.org/abs/1402.5596
20
+
21
+ Install
22
+ -------
23
+
24
+ .. code :: python
25
+
26
+ git submodule init # travis_tools and C-software
27
+ git submodule update
28
+ pip install - r requirements.txt
29
+ python setup.py install
30
+
31
+ Potential speedups
32
+ ------------------
33
+
34
+ - We can condition on “parts” of each draw of the sampler, in
35
+ particular if we condition on the projection of the rejection
36
+ ``sample - center `` onto direction then resampling on the ray can be
37
+ sped up for some things like LASSO. Could be some cost in power.
38
+
39
+ - Learning a higher dimensional function can perhaps save some time –
40
+ proper conditioning has to be checked.
41
+
Original file line number Diff line number Diff line change @@ -129,8 +129,7 @@ def main(**extra_args):
129
129
package_data = {},
130
130
data_files = [],
131
131
scripts = [],
132
- long_description = open ('README.md' , 'rt' ).read (),
133
- long_description_content_type = 'text/markdown' ,
132
+ long_description = open ('README.rst' , 'rt' ).read (),
134
133
cmdclass = cmdclass ,
135
134
** extra_args
136
135
)
You can’t perform that action at this time.
0 commit comments