MCPcopy Create free account
hub / github.com/Francis-Rings/MotionFollower / __init__

Method __init__

src/models/attention_processor.py:12–21  ·  view source on GitHub ↗
(
        self,
        hidden_size=None,
        cross_attention_dim=None,
        camera=False,
    )

Source from the content-addressed store, hash-verified

10
11class 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,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected