mpt-7b-8192 / custom_embedding.py
AlekseyKorshuk's picture
Upload MPTForCausalLM
926dfd9
raw
history blame contribute delete
No virus
308 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)