Skip to content

Commit 14da445

Browse files
windows wheels still not uploading
1 parent 47c2c67 commit 14da445

File tree

3 files changed

+42
-32
lines changed

3 files changed

+42
-32
lines changed

README.md

-30
This file was deleted.

README.rst

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ def main(**extra_args):
129129
package_data = {},
130130
data_files=[],
131131
scripts=[],
132-
long_description=open('README.md', 'rt').read(),
133-
long_description_content_type='text/markdown',
132+
long_description=open('README.rst', 'rt').read(),
134133
cmdclass = cmdclass,
135134
**extra_args
136135
)

0 commit comments

Comments
 (0)