-
Notifications
You must be signed in to change notification settings - Fork 3
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
Debugging issues with experiments/baoab_vs_vvvr.py #2
Comments
The same problem persists if I use the lski1962:experiments choderaj$ python baoab_vs_vvvr.py
Traceback (most recent call last):
File "baoab_vs_vvvr.py", line 1, in <module>
import benchmark.testsystems
File "/Users/choderaj/github/choderalab/integrator-benchmark/integrator-benchmark/benchmark/experiments/benchmark.py", line 5, in <module>
from code.integrators import LangevinSplittingIntegrator
ImportError: No module named 'code.integrators'; 'code' is not a package |
I realize it's also possible that the |
Aha! I think this is due to the use of relative imports, which only work in python 2.x; we need to switch to absolute imports for python 3.x. The big question is whether I should do this for the |
Whoops, that is just one problem, it seems. I still can't find a |
Hm, this is proving tricky since |
I think I've fixed this in #3. |
@maxentile : I'm trying to dig into what might be going on with negative estimates of$\Delta F_{neq}$ from the
baoab_vs_vvvr.py
example you pointed us to, but after installing theintegrator-benchmark
package viathere seems to be some issue with importing
benchmark.testsystems
:My guess is
master
was last updated 24 days ago (!!!)code.integrators
that makes this work locally for youmaster
. Could this berefactor
(updated 19 days ago)?Any idea what the issue might be?
The text was updated successfully, but these errors were encountered: