PaddleClas/ppcls/arch/gears/identity_head.py
2021-06-07 14:22:53 +08:00

6 lines
184 B
Python

class IdentityHead(nn.Layer):
def __init__(self):
super(IdentityHead, self).__init__()
def forward(self, x, label=None):
return {"features": x, "logits": None}