Pointcept / PointTransformerV2

[NeurIPS'22] An official PyTorch implementation of PTv2.
347 stars 23 forks source link

python pcr/datasets/preprocessing/s3dis/preprocess_s3dis.py --dataset_root ${RAW_S3DIS_DIR} --output_root ${PROCESSED_S3DIS_DIR} #39

Closed shenggebiya closed 1 year ago

shenggebiya commented 1 year ago

Traceback (most recent call last): File "pcr/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 114, in main_process() File "pcr/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 107, in main_process pool.starmap(parse_room, [(room, opt.dataset_root, opt.save_root, opt.parse_normals) File "pcr/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 107, in pool.starmap(parse_room, [(room, opt.dataset_root, opt.save_root, opt.parse_normals) AttributeError: 'Namespace' object has no attribute 'save_root'

Gofinge commented 1 year ago

Aha, replace --output_root with --save_root. I fix the bug in our new codebase Pointcept. I will also fix the bug here, thanks.

Gofinge commented 1 year ago

It seems that I already fixed the bug a long time ago, maybe you can pull the code again?

shenggebiya commented 1 year ago

thanks