reichenbach commited on
Commit
b1ba8e7
·
1 Parent(s): 0ee947b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -44,7 +44,8 @@ num_decoder_tokens = len(target_characters)
44
  max_encoder_seq_length = max([len(txt) for txt in input_texts])
45
  max_decoder_seq_length = max([len(txt) for txt in target_texts])
46
 
47
- model = from_pretrained_keras('keras-io/cl_s2s')
 
48
  latent_dim = 256
49
 
50
  encoder_inputs = model.input[0] # input_1
 
44
  max_encoder_seq_length = max([len(txt) for txt in input_texts])
45
  max_decoder_seq_length = max([len(txt) for txt in target_texts])
46
 
47
+ model = from_pretrained_keras("keras-io/cl_s2s")
48
+ print(model.summary())
49
  latent_dim = 256
50
 
51
  encoder_inputs = model.input[0] # input_1