Recurrent Neural Networks (RNNs) for Language Modeling with Keras
David Cecchini
Instructor
Possible architectures:
Text generation: example
# Pre-trained model
model.generate_sheldon_phrase()
'knock knock. penny. do you have an epost is part in your expert,
too bealie to play the tariment with last night.'
How to build text generation models:
Neural Machine Translation: example
# Pre-trained model
model.translate("Vamos jogar futebol?")
'Let's go play soccer?'
How to build NMT
models:
In this chapter:
Recurrent Neural Networks (RNNs) for Language Modeling with Keras