An open API service indexing awesome lists of open source software.

https://github.com/abdouaziz/neural-machine-translation

A Seq2seq Natural Machine Translation
https://github.com/abdouaziz/neural-machine-translation

nmt seq2seq-model tensorflow translation

Last synced: about 1 month ago
JSON representation

A Seq2seq Natural Machine Translation

Awesome Lists containing this project

README

          

# Natural Machine Translation



> Machine translation based on Seq2seq architecture
> The model translate an english sentence to french sentences
> For better understood how seq2seq work your can look [Andrew Ng course ](https://www.youtube.com/playlist?list=PL1F3ABbhcqa3BBWo170U4Ev2wfsF7FN8l) on youtube

>Keras Tutorial Machine Translation [lstm seq2seq](https://keras.io/examples/nlp/lstm_seq2seq/)

## Installation

Clone this repo:

```sh
git clone https://github.com/abdouaziz/nmt.git

cd nmt
```

Download and preprocess the dataset :

```sh
cd app/data
python downaload.py --path=dataset
```

## Test the machine translation

```sh
python app.py
```