(
self,
hidden_size=None,
cross_attention_dim=None,
camera=False,
)
| 10 | |
| 11 | class AttnProcessor(nn.Module): |
| 12 | def __init__( |
| 13 | self, |
| 14 | hidden_size=None, |
| 15 | cross_attention_dim=None, |
| 16 | camera=False, |
| 17 | ): |
| 18 | super().__init__() |
| 19 | self.start_point = 60 |
| 20 | if camera == "True": |
| 21 | self.start_point = 20 |
| 22 | |
| 23 | def __call__( |
| 24 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected