MCPcopy Create free account
hub / github.com/apache/singa / logits

Method logits

examples/cnn_ms/model/xceptionnet.py:262–267  ·  view source on GitHub ↗
(self, features)

Source from the content-addressed store, hash-verified

260 return x
261
262 def logits(self, features):
263 x = self.relu4(features)
264 x = self.globalpooling(x)
265 x = self.flatten(x)
266 x = self.fc(x)
267 return x
268
269 def forward(self, x):
270 x = self.features(x)

Callers 1

forwardMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected