You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/conda/feedstock_root/build_artifacts/libtorch_1715185017593/work/aten/src/ATen/native/cuda/Indexing.cu:1292: indexSelectLargeIndex: block: [152,0,0], thread: [95,0,0] Assertion `srcIndex < srcSelectDimSize` failed.
...
...
...
RuntimeError: CUDA error: device-side assert triggered
CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect.
For debugging consider passing CUDA_LAUNCH_BLOCKING=1.
Compile with `TORCH_USE_CUDA_DSA` to enable device-side assertions.
After carefully debubgging, I find that the problem is in pointllm/model/pointllm.py line 106
I run your demo locally by command
But there is an error:
After carefully debubgging, I find that the problem is in
pointllm/model/pointllm.py
line 106The embedding has shape
torch.Size([32000, 4096])
, but the max value ininput_ids
is 32002.After more carefully debugging, I find that in
pointllm/eval/eval_modelnet_cls.py
, the tokenizer load 3 added token, I print them as:But the embedding seems do not have these tokens. How to solve it?
The text was updated successfully, but these errors were encountered: