skhadem / 3D-BoundingBox

PyTorch implementation for 3D Bounding Box Estimation Using Deep Learning and Geometry
MIT License
435 stars 96 forks source link

pre trained weights link broken #32

Open chienerh opened 1 year ago

chienerh commented 1 year ago

Is there another link we can use to access the pretrained weights? Thanks!

RK-0505 commented 1 year ago

I have same problem as well. I wish the author could have a response to this issue.

chienerh commented 1 year ago

I was able to run the training process and obtain the weights. I uploaded them onto this drive folder. I'm not sure if it is similar to the original weights provided by this repository but hope this helps!

FunnyWii commented 1 year ago

Seems the weights you provided doesn't work

  File "/home/funnywii/Documents/3DBbox/3D-BoundingBox/yolo/yolo.py", line 34, in <listcomp>
    ln = [ln[i[0] - 1] for i in self.net.getUnconnectedOutLayers()]
IndexError: invalid index to scalar variable.

Above err may due to the difference between model's output.

FunnyWii commented 1 year ago

I am sorry, the problem is solved. If anyone has err "module 'numpy' has no attribute 'float'.", just modify np.float into float in the Math.py

https://github.com/skhadem/3D-BoundingBox/issues/24