BEVFormer_tensorrt icon indicating copy to clipboard operation
BEVFormer_tensorrt copied to clipboard

Is there a docker tar package that can be used directly?

Open qingwan7 opened this issue 2 years ago • 10 comments

qingwan7 avatar Oct 24 '23 11:10 qingwan7

You can download the docker image here.

DerryHub avatar Nov 11 '23 02:11 DerryHub

Thanks for the amazing work @DerryHub!

Seems like the Docker image link is expired. Can you share an updated link? I will recommend Google Drive in case the links on this file sharing platform come with an expiry date.

P.S. already tried the readme link too, seems to be the same link.

quantumalaviya avatar Nov 17 '23 12:11 quantumalaviya

Try this one https://pan.baidu.com/s/1dPR6kvgpUoKow51870KNug?pwd=6xkq

DerryHub avatar Nov 20 '23 08:11 DerryHub

Can inference use trtexec directly?

qingwan7 avatar Nov 21 '23 07:11 qingwan7

create docker has meet some problem, Such:

docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "/bin/bash": stat /bin/bash: no such file or directory: unknown.

qingwan7 avatar Nov 29 '23 09:11 qingwan7

I upload it to docker hub and fix some minor bugs.
Just elegantly try the following script

$docker run -it --rm \
    --gpus all \
    -v ./:/workspace/BEVFormer_tensorrt/ \
    -v /data/nuscenes/can_bus:/workspace/BEVFormer_tensorrt/data/can_bus \
    -v /data/coco:/workspace/BEVFormer_tensorrt/data/coco \
    -v /data/nuscenes:/workspace/BEVFormer_tensorrt/data/nuscenes \
    --shm-size=16G \
    --privileged \
    --network=host \
    --user root \
    --env HTTPS_PROXY= \
    hadonga/bev_trt:1.0 /bin/bash

donghe4 avatar Jan 17 '24 01:01 donghe4

I upload it to docker hub and fix some minor bugs. Just elegantly try the following script

$docker run -it --rm \
    --gpus all \
    -v ./:/workspace/BEVFormer_tensorrt/ \
    -v /data/nuscenes/can_bus:/workspace/BEVFormer_tensorrt/data/can_bus \
    -v /data/coco:/workspace/BEVFormer_tensorrt/data/coco \
    -v /data/nuscenes:/workspace/BEVFormer_tensorrt/data/nuscenes \
    --shm-size=16G \
    --privileged \
    --network=host \
    --user root \
    --env HTTPS_PROXY= \
    hadonga/bev_trt:1.0 /bin/bash

Hello, can this image run under jetson orin nx?

xnli avatar Jan 29 '24 09:01 xnli

You can download the docker image here.

Is there a mirror for nvidia jetson aarch64 platform?

xnli avatar Jan 30 '24 01:01 xnli

Try this one https://pan.baidu.com/s/1dPR6kvgpUoKow51870KNug?pwd=6xkq

I encountered below question when I tried to run pth2onnx.py in this docker image "ImportError: cannot import name 'version' from 'torch.torch_version' (/usr/local/lib/python3.8/dist-packages/torch/torch_version.py)"

YourDecesion avatar Feb 23 '24 08:02 YourDecesion

Do you have the docker image pushed on dockerhub? it is easy to docker pull from the docker hub

shawn9977 avatar Sep 06 '24 07:09 shawn9977