PyTorch
mpt
Composer
MosaicML
llm-foundry
custom_code
mpt-7b-chat / custom_embedding.py
cornuHGF's picture
Upload folder using huggingface_hub
00dc082 verified
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)