sharpenb's picture
2f1f7b835d40adf96b3e86a0774e4487bb9108be900ccd28fe5ef5ed3aaf9c8c
058826c verified
raw
history blame
296 Bytes
import torch.nn as nn
import torch.nn.functional as F
from torch import Tensor
class SharedEmbedding(nn.Embedding):
def forward(self, input: Tensor, unembed: bool = False) -> Tensor:
if unembed:
return F.linear(input, self.weight)
return super().forward(input)