given-mpt-7b / custom_embedding.py
Ontocord.AI
Upload custom_embedding.py with huggingface_hub
c5e4b95
raw
history blame contribute delete
No virus
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)