Hi,
I noticed that the attribute constant_tensor is randomly assigned in the class BevDecoder, and BevDecoder is enabled in Mile by default.
|
self.constant_tensor = nn.Parameter(torch.randn((n_channels, *constant_size), dtype=torch.float32)) |
I wonder what the role of this attribute is, and is it necessary to make its value random?
Introducing randomness into the system may also introduce unknown risks.
Hi,
I noticed that the attribute
constant_tensoris randomly assigned in the classBevDecoder, andBevDecoderis enabled inMileby default.mile/mile/models/common.py
Line 197 in c8b245c
I wonder what the role of this attribute is, and is it necessary to make its value random?
Introducing randomness into the system may also introduce unknown risks.