seq2seq character-level machine translation

Tensorflow Keras Implementation of Character-level Recurrent Sequence-to-Sequence Model

This repo contains code using the model. Character-level recurrent sequence-to-sequence model.

Credits: fchollet - Original Author

HF Contribution: Rishav Chandra Varma

Background Information

Introduction

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.

Summary of the algorithm