finetune-7b-UOta2W / custom_embedding.py
epec254's picture
Upload 22 files
91ee9f1
raw
history blame contribute delete
292 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)