We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blocked by #371
Given efficient_influence_function we can implement one step correction as follows (up to some potential interface changes to efficient_influence_fn):
efficient_influence_function
efficient_influence_fn
def one_step_correction( model: Callable[P, T], guide: Guide[P, T], target: Functional[P, T], test_data: Dict[str, Observation[T]], ) -> torch.tensor: eif_fn = efficient_influence_fn(model, guide, target) return eif_fn(test_data).mean(axis=0)
The text was updated successfully, but these errors were encountered:
chirho.robust
Closed by #467
Sorry, something went wrong.
eb8680
agrawalraj
No branches or pull requests
Blocked by #371
Given
efficient_influence_function
we can implement one step correction as follows (up to some potential interface changes toefficient_influence_fn
):The text was updated successfully, but these errors were encountered: