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
I am getting this issue (in the screenshot) while running RLzoo with RLbench using the following code:
from rlzoo.common.env_wrappers import * from rlzoo.common.utils import * from rlzoo.algorithms import * EnvName = 'ReachTarget' EnvType = 'rlbench' env = build_env(EnvName, EnvType, state_type='vision') AlgName = 'SAC' alg_params, learn_params = call_default_params(env, EnvType, AlgName) alg = eval(AlgName+'(**alg_params)') alg.learn(env=env, mode='train', render=False, **learn_params) alg.learn(env=env, mode='test', render=True, **learn_params) env.close()
I have also added export PYTHONPATH="/home/sidharth/RLBench" in .bashrc
export PYTHONPATH="/home/sidharth/RLBench"
.bashrc
Any help would be appreciated! Thanks.
The text was updated successfully, but these errors were encountered:
This issue is now fixed!
The problem was in RLzoo/rlzoo/common/build_rlbench_env.py, there is now a new action mode API in RLBench that allows for easier custom action modes.
RLzoo/rlzoo/common/build_rlbench_env.py
The code in this file should be modified, the commented code should be replaced by the code below (as shown in the screenshots).
After editing, go to the RLzoo folder, using cd RLzoo and type pip3 install . to rebuild it.
cd RLzoo
pip3 install .
Sorry, something went wrong.
No branches or pull requests
I am getting this issue (in the screenshot) while running RLzoo with RLbench using the following code:
I have also added
export PYTHONPATH="/home/sidharth/RLBench"
in.bashrc
Any help would be appreciated! Thanks.
The text was updated successfully, but these errors were encountered: