Text Generation
Transformers
mpt
Composer
MosaicML
llm-foundry
custom_code
ct2-int8-mtb-7b-storywriter / custom_embedding.py
TitanML Co
Upload folder using huggingface_hub
ab44456 verified
raw
history blame contribute delete
305 Bytes
import torch
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)