MCPcopy Create free account
hub / github.com/10Ring/LAA-Net / forward

Method forward

models/networks/efficientNet.py:382–385  ·  view source on GitHub ↗
(ctx, i)

Source from the content-addressed store, hash-verified

380class SwishImplementation(torch.autograd.Function):
381 @staticmethod
382 def forward(ctx, i):
383 result = i * torch.sigmoid(i)
384 ctx.save_for_backward(i)
385 return result
386
387 @staticmethod
388 def backward(ctx, grad_output):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected