aRI0U / RandLA-Net-pytorch

PyTorch implementation of RandLA-Net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

s3dis test errors

BinZhu-ece opened this issue · comments

When I tested the s3dis data set, I encountered the error "ValueError: attempt to get argmin of an empty sequence". I found that path="xxx/subsample/test",loader,_=data_loaders(path); in the test.py file; but there is dataset=CloudsDataset(dir/'train') in the data_loaders function in data.py, this path Is there an error? I changed the path to'xxx/subsample', but the error ‘wrong field dimensions’ appeared, what is the problem? thank you for your reply.

Hello! The same happens to me. The change I've made to solve it has benn in the line 233 of the data.py file, changing the original line dataset = CloudsDataset(dir / 'train') by dataset = CloudsDataset(dir)

the same error