ajhamdi / MVTN

pytorch implementation of the ICCV'21 paper "MVTN: Multi-View Transformation Network for 3D Shape Recognition"
100 stars 9 forks source link

specified material (None) not loaded! #1

Closed whu-lee closed 3 years ago

whu-lee commented 3 years ago

Thank you very much for your paper and code, but this problem appeared when I ran the code. Could you tell me how to solve it? thank you very much. image

whu-lee commented 3 years ago

image

ajhamdi commented 3 years ago

@whu-lee what dataset is this ?

whu-lee commented 3 years ago

Thank you very much for your reply. The dataset is modelnet40. I just set “num_workers=0”. when "num_workers=6" , the error shown in the figure will appear. image

ajhamdi commented 3 years ago

@whu-lee for the number of workers, it would be preferred to be <=4.

For the Warnings about not available materials, We are not using the material of the objects in this project, so you can ignore it or shut it down with the following code

import logging
logger = logging.getLogger("trimesh")
logger.setLevel(logging.ERROR)