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
Printing an MCMCOutput object in the console or a Jupyter notebook results in a large output for long chains.
Minimal reproducible example:
from nfmc import sample import torch output = sample( target=lambda x: torch.sum(x ** 2, dim=1), event_shape=(10,), strategy='mh', n_iterations=1000, n_chains=100 ) print(output)
Proposed change: do not print the samples.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Printing an MCMCOutput object in the console or a Jupyter notebook results in a large output for long chains.
Minimal reproducible example:
Proposed change: do not print the samples.
The text was updated successfully, but these errors were encountered: