Edit model card

Keras Implementation of Character-level recurrent sequence-to-sequence model

This repo contains the model and the notebook to this Keras example on Character-level recurrent sequence-to-sequence model.

Full credits to: fchollet

Background Information

This example demonstrates how to implement a basic character-level recurrent sequence-to-sequence model. We apply it to translating short English sentences into short French sentences, character-by-character. Note that it is fairly unusual to do character-level machine translation, as word-level models are more common in this domain.

Limitations

It works on text of length <= 15 characters

Parameters needed for using the model

latent_dim = 256
num_encoder_tokens = 71
max_encoder_seq_length = 15
num_decoder_tokens = 92
max_decoder_seq_length = 59
Downloads last month
6
Inference Examples
Inference API (serverless) does not yet support keras models for this pipeline type.

Space using keras-io/char-lstm-seq2seq 1