Text Generation
Transformers
PyTorch
Thai
English
mpt
custom_code
text-generation-inference
File size: 292 Bytes
cd7c35a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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)