LiyaoTang / contrastBoundary

Contrastive Boundary Learning for Point Cloud Segmentation (CVPR2022)
MIT License
140 stars 11 forks source link

How to run contrastive boundary learning with CloserLook3D baseline? #9

Closed whuhxb closed 11 months ago

whuhxb commented 2 years ago

Hi,

How to run contrastive boundary learning with CloserLook3D baseline on S3DIS dataset? Thanks. ConvNet is run by: python main.py -c config.s3dis.conv_0

Best.

LiyaoTang commented 2 years ago

Hi,

I'm sorry that I do not understand what you mean by the 'ResNet'.

whuhxb commented 2 years ago

@LiyaoTang Hi, I mean that how to run CBL on CloserLook3D, not only ConvNet. In your instruction, you give the running code on ConvNet like this: python main.py -c config.s3dis.conv_0, but not on CloserLook3D. What command line of running on CloserLook3D? Thanks.

LiyaoTang commented 2 years ago

Hi, you could run by specifying the corresponding config, eg. -c config.s3dis.pospool_0.

Additionally, if you like, you can also extend to use the pseudo-grid method. But that requires a bit of coding as I did not work on that method, yet it should be similar to how I define the Pospool class.

whuhxb commented 2 years ago

@LiyaoTang OK. How to find the model defination like -c config.s3dis.pospool_0 or -c config.s3dis.conv_0? Is there any other choices?

LiyaoTang commented 2 years ago

You can look into each config file. You should also check how the Config class is defined in config/base.py