MCPcopy Create free account
hub / github.com/OUCMachineLearning/OUCML / forward

Method forward

AutoML/darts-master/cnn/model.py:105–108  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

103 self.classifier = nn.Linear(768, num_classes)
104
105 def forward(self, x):
106 x = self.features(x)
107 x = self.classifier(x.view(x.size(0),-1))
108 return x
109
110
111class NetworkCIFAR(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected