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
Hello,
I am running the VAIL example as explained in the README.
main.py works as expected.
When running test (e.g., as written: python test.py --load_model ckpt_4000_vail.pth.tar), there is an import error.
python test.py --load_model ckpt_4000_vail.pth.tar
Specifically:
lets-do-irl/mujoco/vail/test.py
Line 8 in ad04bf1
there is no file running_state. In the main.py the running state was defined from Zfilter.
The text was updated successfully, but these errors were encountered:
Hello, I am running the VAIL example as explained in the README. main.py works as expected. When running test (e.g., as written: python test.py --load_model ckpt_4000_vail.pth.tar), there is an import error. Specifically: lets-do-irl/mujoco/vail/test.py Line 8 in ad04bf1 from utils.running_state import ZFilter there is no file running_state. In the main.py the running state was defined from Zfilter.
maybe you should change it.the Zfliter is in utils.zfilter.you can change it as : from utils.zfilter import ZFilter
from utils.zfilter import ZFilter
Sorry, something went wrong.
Thanks @csufangyu. I previously modified the code to make it work, but thought the authors might want to fix the repo
No branches or pull requests
Hello,
I am running the VAIL example as explained in the README.
main.py works as expected.
When running test (e.g., as written:
python test.py --load_model ckpt_4000_vail.pth.tar
), there is an import error.Specifically:
lets-do-irl/mujoco/vail/test.py
Line 8 in ad04bf1
there is no file running_state. In the main.py the running state was defined from Zfilter.
The text was updated successfully, but these errors were encountered: