-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Some Hardware issues #3
Comments
I use a 3080 or 2080 for all my experiments. Training time is about 1 day at max. (block stacking finetuning stage is another extra day but it converges far earlier) It trains faster if you have more CPUs and can increase the number of training envs |
Thanks for your reply!
env = SubprocVecEnv([make_env(i) for i in range(exp_cfg.n_envs)]) get errors ConnectionResetError: [Errno 104] Connection reset by peer I will reclone this repo in my laptop, really hope get your help~ it would be appreciated if the author could provide more detailed installation instructions. I tried using the check_env function in stable-baselines3 but encountered issues creating the environment, likely due to version incompatibility between the various installed packages. |
Thanks again for authors such an excellent work, I have solved the training issues and write a install.md as follows. Install torch pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113 upgrade the setuptool & wheel for installing gym < 0.22 pip install --upgrade pip setuptools==57.5.0 wheel==0.38.3 install Mani-skill2 to install some dependencies, this package will remove later, but can install some package in one command. pip install mani-skill2 install other denpendency pip install stable-baselines3==1.8 transformers wandb omegaconf pyglet open3d tensorboard moviepy install all envs pip install minigrid dm_control x-magical local install for most tasks pip install -e ./paper_rl/
pip install -e .
pip install -e external/ManiSkill2 If want to try the Opendrawer task, we need to check the sapien version to v1: conda create -n tr2_open --clone tr2
conda activate tr2_open
pip uninstall mani-skill2
pip install sapien==1.1
pip install external/ManiSkill |
Sorry for the very delayed reply, It'll be a little hard to debug with just This was a fairly "old" project so I may need some time to go through my old environment and see if I can pull out a more reproducible environment.yml file for use with conda. |
Thanks for such excellent work by the authors!!!
Due to limited computational resources on my platform, I would like to inquire about the hardware requirements for reproducing this work. Is an Nvidia RTX-3090 sufficient for the task, and could you provide some information on the duration of each training session in your work?
The text was updated successfully, but these errors were encountered: