Spaces:
Sleeping
Sleeping
File size: 293 Bytes
97fe9c2 |
1 2 3 4 5 6 7 8 9 10 11 12 |
class Config:
vocab_size = 28000 # Vocabulary Size
sequence_length = 35
batch_size = 128
validation_split = 0.20
embed_dim = 300
num_layers = 4
latent_dim = 2048
num_heads = 12
epochs = 50 # Number of Epochs to train
is_training = True
config = Config() |