Skip to content

Commit

Permalink
Merge pull request #4 from aangelopoulos/cross-ppi
Browse files Browse the repository at this point in the history
Cross-PPI implementation
  • Loading branch information
aangelopoulos committed Nov 13, 2023
2 parents 18e80dc + c63c80c commit 360a987
Show file tree
Hide file tree
Showing 12 changed files with 939 additions and 115 deletions.
2 changes: 2 additions & 0 deletions docs/source/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,5 @@ The repository currently implements the methods developed in the following paper
`Prediction-Powered Inference <https://arxiv.org/abs/2106.06487>`_

`PPI++: Efficient Prediction-Powered Inference <https://arxiv.org/abs/2311.01453>`_

`Cross-Prediction-Powered Inference <https://arxiv.org/abs/2309.16598>`_
16 changes: 16 additions & 0 deletions docs/source/crossppi.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

API Reference for Cross-PPI
==========================================

Documentation for functions implementing cross-prediction-powered inference `[ZC23] <https://arxiv.org/abs/2309.16598>`_ can be found here.

.. autofunction:: ppi_py.crossppi_mean_pointestimate
.. autofunction:: ppi_py.crossppi_mean_ci
.. autofunction:: ppi_py.crossppi_quantile_pointestimate
.. autofunction:: ppi_py.crossppi_quantile_ci
.. autofunction:: ppi_py.crossppi_ols_pointestimate
.. autofunction:: ppi_py.crossppi_ols_ci
.. autofunction:: ppi_py.crossppi_logistic_pointestimate
.. autofunction:: ppi_py.crossppi_logistic_ci

`[ZC23] <https://arxiv.org/abs/2309.16598>`_ T. Zrnic and E. J. Candès. Cross-Prediction-Powered Inference. arxiv:2309.16598, 2023.
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ To install the package, run the following code!

README
ppi
crossppi
baselines

Indices and tables:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/ppi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
API Reference for PPI
==========================================

Documentation for functions implementing some form of prediction-powered inference can be found here.
Documentation for functions implementing prediction-powered inference can be found here.

.. autofunction:: ppi_py.ppi_mean_pointestimate
.. autofunction:: ppi_py.ppi_mean_ci
Expand Down
1 change: 1 addition & 0 deletions ppi_py/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from .ppi import *
from .cross_ppi import *
from .baselines import *
Loading

0 comments on commit 360a987

Please sign in to comment.