Closed CeHao-NUS closed 1 week ago
By the way, how do I disable the GUI display? It seems use_gui = True is hardcoded and cannot be easily adjusted in the argparser?
The problems with frozen screen is fixed. The problem happens when sim.simulate
was set to True. Without physics on you can still generate the motion plans and objects will be assumed attached after gripper is closed.
As for the pddlstream error, could you make sure to pull the most recent changes from pddlstream caelan/diverse branch?
I don't see the error when running python your_project_folder/run_generation_pigi_custom.py
To disable GUI display, set sim.viewer = False
in config yaml files. setting them in argparse should be similar.
Let me know if you have other questions.
Dear Zhutian,
Great thanks for your help.
I basically know the reason for this bug.
1. The recursive github pulling failed.
git clone git@github.com:Learning-and-Intelligent-Systems/kitchen-worlds.git --recursive
I tried to use the recursive clone function to download all sub-directories, but it failed.
git clone git@github.com:Learning-and-Intelligent-Systems/kitchen-worlds.git --recursive
Cloning into 'kitchen-worlds'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
So I changed the script, then I can download the kitchen-world repo, but the submodules were timeout.
git clone https://github.com/Learning-and-Intelligent-Systems/kitchen-worlds.git --recursive
Cloning into 'kitchen-worlds'...
remote: Enumerating objects: 11162, done.
remote: Counting objects: 100% (1465/1465), done.
remote: Compressing objects: 100% (515/515), done.
remote: Total 11162 (delta 935), reused 1441 (delta 919), pack-reused 9697 (from 1)
Receiving objects: 100% (11162/11162), 211.13 MiB | 11.20 MiB/s, done.
Resolving deltas: 100% (3375/3375), done.
Submodule 'assets/models' (git@github.com:zt-yang/kitchen-models.git) registered for path 'assets/models'
Submodule 'lisdf' (https://github.com/Learning-and-Intelligent-Systems/lisdf) registered for path 'lisdf'
Submodule 'pddlstream' (git@github.com:zt-yang/pddlstream.git) registered for path 'pddlstream'
Submodule 'pybullet_planning' (git@github.com:zt-yang/pybullet_planning.git) registered for path 'pybullet_planning'
Cloning into '/home/users/cehao/github_space/temp/kitchen-worlds/assets/models'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
Cloning into '/home/users/cehao/github_space/temp/kitchen-worlds/lisdf'...
remote: Enumerating objects: 1064, done.
remote: Counting objects: 100% (279/279), done.
remote: Compressing objects: 100% (145/145), done.
remote: Total 1064 (delta 152), reused 208 (delta 123), pack-reused 785 (from 1)
Receiving objects: 100% (1064/1064), 6.83 MiB | 11.29 MiB/s, done.
Resolving deltas: 100% (563/563), done.
Cloning into '/home/users/cehao/github_space/temp/kitchen-worlds/pddlstream'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
2. Therefore, I manually download the submodules. Then put them into the correct directories.
However, some repos are not specific branches. link
So I need to manually switch to the exact commit. And this might make some mismatch with your local version.
3. I will double-check all repos again and tell you if it can work.
If you have time, would you help check how to successfully download the submodules together? To see whether this can work?
git clone git@github.com:Learning-and-Intelligent-Systems/kitchen-worlds.git --recursive
Great thanks for your help. And I want to develop some transformer and diffusion-based TAMP algorithms!
Best wishes, Ce Hao
1. python examples/test_data_generation.py --config_name kitchen_full_pr2.yaml
I manually fix this. But it stopped.
2. python examples/test_data_generation.py --config_name kitchen_full_feg.yaml
The scene just freezer.
python your_project_folder/run_generation_pigi_custom.py
Failed.