Skip to main content

Experimentalist that uses statistical leverage to determine the next data to sample.

Project description

The Leverage Experimentalist

This experimentalist uses the statistical concept of leverage by refitting the provided models iteratively with the leave-one-out method.


WARNING: This experimentalist needs to fit each model you provide it n times, where n corresponds to the number of datapoints you have. As such, the computational time and power needed to run this experimentalist increases exponentially with increasing number of models and datapoints.


In each iteration, it computes the degree to which the currently removed datapoint has influence on the model. If the model remains stable, the datapoint is deemed to have little influence on the model, and as such will have a low likelihood of being selected for further investigation. In contrast, if the model changes, the datapoint is influential on the model, and has a higher likelihood of being selected for further investigation.

Specifically, you provide the experimentalist with a model that has been trained on all of the data. On each iteration, the experimentalist fits a new model with all data aside from one datapoint. Both models ($m$) then predict Y scores ($Y'$) from the original X variable and compute a mean squared error (MSE) for each X score ($i$):

$$MSE_{m,i} = \sum(Y'{m,i} - Y{i})^{2}$$

The experimentalist then computes a ratio of the MSE scores between the experimentalist model and the original model that you provided:

$${MSE_{Ratio}}{m,i} = {MSE{experimentalist}}{m,i}/{MSE{original}}_{m}$$ As such, values above one indicates that the original model fit the data better than the experimentalist model when removing that datapoint ($i$). In contrast, values below one indicates that the experimentalist model fit the data better than the original model when removing that datapoint ($i$). And a value of one indicates that both models fit the data equally. If you provide multiple models, it will then average across these models to result in an aggregate MSE score for each X score. In the future, it might be a good idea to incorporate multiple models in a more sophisticated way.

Finally, the experimentalist then uses these aggregated ratios to select the next set of datapoints to explore in one of three ways, declared with the 'fit' parameter. -'increase' will choose samples focused on X scores where the fits got better (i.e., the smallest MSE ratios) -'decrease' will choose samples focused on X scores where the fits got worse (i.e., the largest MSE ratios) -'both' will do both of the above, or in other words focus on X scores with the most extreme scores.

Example Code

from autora.experimentalist.leverage import leverage_sample
from autora.theorist.darts import DARTSRegressor; DARTSRegressor()
from sklearn.linear_model import LogisticRegression

#Meta-Setup
X = np.linspace(start=-3, stop=6, num=10).reshape(-1, 1)
y = (X**2).reshape(-1, 1)
n = 5

#Theorists
darts_theorist = DARTSRegressor()
lr_theorist = LogisticRegression()
darts_theorist.fit(X,y)
lr_theorist.fit(X,y)

#Experimentalist
X_new = leverage_sample(X, y, [darts_theorist, lr_theorist], fit = 'both', num_samples = n)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autora-experimentalist-leverage-1.0.0.tar.gz (90.2 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file autora-experimentalist-leverage-1.0.0.tar.gz.

File metadata

File hashes

Hashes for autora-experimentalist-leverage-1.0.0.tar.gz
Algorithm Hash digest
SHA256 b5ef96881cd09c795751abf137f7407e8c1042658dbfd57b725fa9f19e1af9e4
MD5 a30f87dca39d3844f4af8e8186e36156
BLAKE2b-256 bc1874e1467e00ed7f0e335f3f4262e1c759918ff76a4bd8b6d82e277a580534

See more details on using hashes here.

File details

Details for the file autora_experimentalist_leverage-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for autora_experimentalist_leverage-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 86f0b29e84cea619d8cc07d9fc830fe7897073be05c1ee00e5a9d426c0fdb284
MD5 164265f41d795bdf6a0f96b6aef14bae
BLAKE2b-256 138deb72f8d29a92d1d70687981b388249b01bec3eca7fe4403ef4e7d06d4cbb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page