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
v1.5, Ubuntu
When initializing an environment with seed, it reports TypeError: NutAssembly.__init__() got an unexpected keyword argument 'seed'.
TypeError: NutAssembly.__init__() got an unexpected keyword argument 'seed'
In ManipulationEnv and RobotEnv, the seed is in the argument list, e.g.,
ManipulationEnv
RobotEnv
seed
robosuite/robosuite/environments/manipulation/manipulation_env.py
Line 153 in 154491f
robosuite/robosuite/environments/manipulation/stack.py
Line 15 in 154491f
This should cause an unseeded environment.
BR, Yi
To reproduce this:
import robosuite as suite env = suite.make(env_name='Lift', robots='IIWA', seed=1) ### Expected behavior _No response_
The text was updated successfully, but these errors were encountered:
Abhiram824
No branches or pull requests
System Info
Information
When initializing an environment with seed, it reports
TypeError: NutAssembly.__init__() got an unexpected keyword argument 'seed'
.In
ManipulationEnv
andRobotEnv
, theseed
is in the argument list, e.g.,robosuite/robosuite/environments/manipulation/manipulation_env.py
Line 153 in 154491f
seed
is missing for a specific task, e.g.,robosuite/robosuite/environments/manipulation/stack.py
Line 15 in 154491f
This should cause an unseeded environment.
BR,
Yi
Reproduction
To reproduce this:
The text was updated successfully, but these errors were encountered: