Closed ZM-Zhou closed 7 months ago
which config?
I used r50_nuimg_704x256_8f.py
did u modify the setting? it's OK on my server.
Try to modify line210 in loaders/pipelines/loading.py .
results['voxel_semantics'] = semantics.astype(np.int) results['voxel_instances'] = final_instances.astype(np.int)
sorry I cannot reproduce the error, could you try the latest codebase?
Try to modify line210 in loaders/pipelines/loading.py .
results['voxel_semantics'] = semantics.astype(np.int) results['voxel_instances'] = final_instances.astype(np.int)
It works!! thank you so much. BTW, in the latest codebase, they are moved to line 219-220
Hello, thanks for releasing this excellent work! (of course I gave the star~) When I tried to train the model, I got the following error:
It seems like that the prediction does not matching any valid label, thus the size of
tgt_mask
is (0, 32000). BTW, Could you release the training log of the model, it will be helpful for further checking the model.