We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi author: ourself dataset has more large objects, like truck, The truck is over 20 meters long. below is dataset campare:
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
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?
No branches or pull requests
Hi author:
ourself dataset has more large objects, like truck, The truck is over 20 meters long. below is dataset campare:
The text was updated successfully, but these errors were encountered: