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

when use voxelnext to ourself dataset, the large object has poor detect effect。 #60

Open
2anchao opened this issue Jun 26, 2024 · 2 comments

Comments

@2anchao
Copy link

2anchao commented Jun 26, 2024

Hi author:
ourself dataset has more large objects, like truck, The truck is over 20 meters long. below is dataset campare:
truck_nuscenes
truck_jica

@2anchao
Copy link
Author

2anchao commented Jun 26, 2024

    x_conv5 = self.conv5(x_conv4)
    x_conv6 = self.conv6(x_conv5)
    x_conv7 = self.conv7(x_conv6)
    

    x_conv5.indices[:, 1:] *= 2
    x_conv6.indices[:, 1:] *= 4
    x_conv7.indices[:, 1:] *= 8
    
    x_conv4 = x_conv4.replace_feature(
        torch.cat([x_conv4.features, x_conv5.features, x_conv6.features, x_conv7.features])
    )
    x_conv4.indices = torch.cat([x_conv4.indices, x_conv5.indices, 
                                 x_conv6.indices, x_conv7.indices])

    out = self.bev_out(x_conv4)

i use stride 64 feature to improve large object detect effect, and kernel_size_head=3. is it useful?any advice for me? thanks.

@yinheyanxian
Copy link

    x_conv5 = self.conv5(x_conv4)
    x_conv6 = self.conv6(x_conv5)
    x_conv7 = self.conv7(x_conv6)
    

    x_conv5.indices[:, 1:] *= 2
    x_conv6.indices[:, 1:] *= 4
    x_conv7.indices[:, 1:] *= 8
    
    x_conv4 = x_conv4.replace_feature(
        torch.cat([x_conv4.features, x_conv5.features, x_conv6.features, x_conv7.features])
    )
    x_conv4.indices = torch.cat([x_conv4.indices, x_conv5.indices, 
                                 x_conv6.indices, x_conv7.indices])

    out = self.bev_out(x_conv4)

i use stride 64 feature to improve large object detect effect, and kernel_size_head=3. is it useful?any advice for me? thanks.

does it work?

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

2 participants