aangelopoulos / ppi_py

A package for statistically rigorous scientific discovery using machine learning. Implements prediction-powered inference.
MIT License
194 stars 14 forks source link

Can "labels" also be continuous variables? #10

Closed dominik-rehse closed 5 months ago

dominik-rehse commented 5 months ago

Thanks for this awesome package. As far as I could read them, both the package docs as well as the related research papers mostly speak of "labels" for X and Y. However, some of the examples also use continuous variables. Will this package work also for continous variables for both X, Y, Yhat, X_unlabeled etc.?

aangelopoulos commented 5 months ago

Hey Dominik! Nice to meet you! And thanks :)

X and X_unlabeled can be continuous in any example.

Y can be continuous in any example except for logistic regression, and Yhat can always be continuous.

Does this help? Thanks!

dominik-rehse commented 5 months ago

Excellent, thanks!