File size: 461 Bytes
07eca6f
 
638604f
07eca6f
638604f
0b1ec9b
 
 
 
 
 
638604f
0b1ec9b
 
 
 
 
 
638604f
07eca6f
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import torch 
from torch import nn
from huggingface_hub import PyTorchModelHubMixin

class SelfAttention(nn.Module,PyTorchModelHubMixin):
    def __init__(self):
        pass

    def forward(self):
        pass

class MLP(nn.Module,PyTorchModelHubMixin):
    def __init__(self):
        pass

    def forward(self):
        pass

class GPT(nn.Module,PyTorchModelHubMixin):
    def __init__(self):
        super().__init__()

    def forward(self):
        pass