Hi authors,
Thank you for releasing this great work. I am trying to reproduce the results and deploy the SpatialAgent system on my server, but I encountered some compatibility issues during environment setup.
I followed the provided requirements-agent.txt to install the dependencies. However, I noticed that the PyTorch version was not explicitly specified. Since uniception==0.1.7 depends on torch, pip automatically installed the latest available version:
- PyTorch: 2.13.0
- CUDA runtime: 13.0
When launching the GPU server with:
python -m spatial_agent.entrypoints.launch_gpu_server --num_gpus 1 --reconstruct_backend pi3
I encountered the following error:
RuntimeError: The NVIDIA driver on your system is too old
(found version 12050).
Please update your GPU driver...
My server configuration is:
- GPU: NVIDIA A40
- NVIDIA Driver: supporting CUDA 12.5
- Python: 3.11
I suspect that the issue is caused by a mismatch between the installed PyTorch CUDA version and the NVIDIA driver version.
Could you please provide the exact environment configuration used for your experiments, especially:
- PyTorch version
- CUDA version (both toolkit/runtime if applicable)
- NVIDIA driver version
- The recommended installation command for PyTorch
For example, an environment.yml, requirements lock file, or Docker image configuration would be very helpful.
Thank you very much for your help!
Hi authors,
Thank you for releasing this great work. I am trying to reproduce the results and deploy the SpatialAgent system on my server, but I encountered some compatibility issues during environment setup.
I followed the provided
requirements-agent.txtto install the dependencies. However, I noticed that the PyTorch version was not explicitly specified. Sinceuniception==0.1.7depends ontorch, pip automatically installed the latest available version:When launching the GPU server with:
I encountered the following error:
My server configuration is:
I suspect that the issue is caused by a mismatch between the installed PyTorch CUDA version and the NVIDIA driver version.
Could you please provide the exact environment configuration used for your experiments, especially:
For example, an
environment.yml,requirements lock file, or Docker image configuration would be very helpful.Thank you very much for your help!