precious3-gpt / mpt_7b /custom_embedding.py
stefan-insilico's picture
Loaded model configuration and mpt-7b code
f53ff72
raw
history blame
No virus
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)