ajhamdi / MVTN

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

How to find nb_points for custom dataset? #6

Closed wlcosta closed 2 years ago

wlcosta commented 2 years ago

Hey! I am new to this kind of approach and wanted to apply it to a custom dataset of mine. How do I find the correct nb_points value for my dataset? Thanks!

ajhamdi commented 2 years ago

Hi @wlcosta . You don't find that number, you basically pass it to your data loader which in turns sample as many points as desired. You have to create your own data loader. See custom_datasets.py for examples.