-
Notifications
You must be signed in to change notification settings - Fork 43
Can't use CNN? #248
Comments
In current machina implementation, observations are saved in flatten vector.
|
Instead of defining your own class of |
Thanks @iory and @takerfume !
I guess there is no available memory on GPU, so I decrease
Is it something that can not be helped? |
Hello, I'm always indebted to machina.
I implement QT-Opt for grasping tasks at PyBullet(https://github.com/bulletphysics/bullet3/blob/master/examples/pybullet/gym/pybullet_envs/baselines/train_kuka_cam_grasping.py).
Observation of this environment is a RGBD image(
observation_space = Box(341, 256, 4)
) and action is displacement of x, y, gripper angle(action_space = Box(3,)
).I built CNN for inputting a image, but I got this error when sampling trajectory.
I tried on another environment that is like former environment but observation is not RGBD image (
observation_space = Box(9, )
) (so NN is not CNN but MLP) , but it worked without error.Is there any problem using CNN...? (or my network is wrong?)
Please give an advice to solve this error.
For reference, here is my NN architecture.
The text was updated successfully, but these errors were encountered: