Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

multi-scale classification code #21

Open
zwh-2017 opened this issue Nov 10, 2019 · 2 comments
Open

multi-scale classification code #21

zwh-2017 opened this issue Nov 10, 2019 · 2 comments

Comments

@zwh-2017
Copy link

Dear author, Could you release your multi-scale classification code? Thank you。

@amiltonwong
Copy link

Hi, @Yochengliu ,
The best result mentioned in your paper is multi-scale (s=3) version. When will the multi-scale (s=3) version be released? If it's not yet ready, could you give some hints on how to build it by extend your single-scale version?

THX!

@yuan-zm
Copy link

yuan-zm commented Jan 11, 2021

I think the only thing we should do is modify the rscnn_ssn_cls.py.
Try to use this.
`
self.SA_modules.append(
PointnetSAModuleMSG(
npoint=512,

            first_layer=True,
            radii=[0.1, 0.2, 0.4],
            nsamples=[16, 32, 128],
            mlps=[[input_channels, 64], [input_channels, 64], [input_channels, 64]],

            use_xyz=use_xyz,
            relation_prior=relation_prior
        )
    )

    c_out_0 = 64 * 3

    self.SA_modules.append(
        PointnetSAModuleMSG(
            npoint=128,
            radii=[0.2, 0.4, 0.8],
            nsamples=[32, 64, 128],
            mlps=[
                [c_out_0, 512],
                [c_out_0, 512],
                [c_out_0, 512],
            ],

            use_xyz=use_xyz,
            relation_prior=relation_prior
        )
    )
    c_out_1 = 512 * 3
    self.SA_modules.append(
        # global convolutional pooling
        PointnetSAModule(
            nsample = 128,
            mlp=[c_out_1, 1024], 
            
            use_xyz=use_xyz
        )
    )

`
Sadly, the result is not good. I don't get the result released by the author. Maybe the nsamples and radii are not good.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants