class TinyTransformer(nn.Module):

def __init__(self):

super().__init__()

# setting the constructor for the initial values that we are every gonna need for the training of the data

self.char_embedding = nn.Embedding(65, 64)