-
Notifications
You must be signed in to change notification settings - Fork 8
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
Place sampling subpackage into an mclmc package #39
Comments
Thanks for pointing that out! We can change that in the future. Also feel free to change it yourself and submit a PR. |
(Should be done soon) |
agree! On this note, I'd also suggest migrating to I'm happy to pitch in if there's a need -- the |
Sounds good! I added the mclmc/sampling structure (thought haven't exported to pip), but the pyproject.toml is very welcome (currently I'm working on porting the codebase to BlackJax, but feel free to submit a PR). |
ok -- I should have a chance to get to this by the end of the week. What branch should I fork from? |
I'd recommend forking from |
sorry to ask a potentially silly question, but do you prefer the name |
made a PR #41 feel free to edit within that as you see fit. I assume the relative paths will be addressed in some other branch you're working on; I just did the minimal amount to pass tests currently |
Thanks!
Both MCLMC and MCHMC are fine. To be precise, code is now MCLMC, but we
probably don't want to rename the repo? I think we can just stick with
MCHMC.
Jakob
…On Fri, Nov 17, 2023, 19:45 samueldmcdermott ***@***.***> wrote:
made a PR #41 <#41>
feel free to edit within that as you see fit. I assume the relative paths
will be addressed in some other branch you're working on; I just did the
minimal amount to pass tests currently
—
Reply to this email directly, view it on GitHub
<#39 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKIPD4GESMK2XBZBKYPHNWDYE6WDVAVCNFSM6AAAAAA7FOHBPCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJWHEYTQMRXGU>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
sounds good -- I pushed code and made a PR already so I'll leave it to you or @reubenharry to make edits in the obvious places as necessary. Thanks! |
I am trying to integrate your sampler in my code, but when I pip install the package locally, I need to do
import sampling
to access the package.This seems a bit dangerous if you have another local module called
sampling.py
. It would maybe be better to do:import mclmc.sampling
to follow package naming conventionThe text was updated successfully, but these errors were encountered: