MCPcopy Create free account
hub / github.com/Walter0807/MotionBERT / forward

Method forward

lib/model/DSTformer.py:79–85  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

77 self.drop = nn.Dropout(drop)
78
79 def forward(self, x):
80 x = self.fc1(x)
81 x = self.act(x)
82 x = self.drop(x)
83 x = self.fc2(x)
84 x = self.drop(x)
85 return x
86
87
88class Attention(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected