-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
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
[CmdStan 2.32] Add method laplace_sample
#649
Labels
feature
New feature or request
Comments
WardBrian
changed the title
[CmdStan 2.32] Add method
[CmdStan 2.32] Add method Jan 19, 2023
laplace
laplace_sample
Note: Once argument |
is there a way to change a class name or introduce a new one while maintaining backwards compatibility? |
I think you can do something like class NewName:
... # all logic
class OldName(NewName):
def __init__(self, *args, **kwargs):
warnings.warn("Deprecated")
super().__init__(*args, **kwargs) |
See CmdStanR design discussion: |
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See stan-dev/cmdstan#1134
Also added:
jacobian
flag for optimization.The text was updated successfully, but these errors were encountered: