MCPcopy Create free account
hub / github.com/IgaoGuru/Sequoia / forward

Method forward

light_classifier.py:130–142  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

128 return seq_block
129
130 def forward(self, x):
131
132 x = self.conv1(x)
133 x = self.maxpool(x)
134
135 x = self.conv2(x)
136
137 x = self.conv3(x)
138 x = self.maxpool(x)
139
140 x = self.lastcnn(x)
141
142 return x
143
144
145class Light_Dataset(CsgoDataset):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected