https://github.com/jianguoz/dnld_language_translation-p4
Training a sequence to sequence model on a dataset of English and French sentences that can translate new sentences from English to French
https://github.com/jianguoz/dnld_language_translation-p4
Last synced: about 2 months ago
JSON representation
Training a sequence to sequence model on a dataset of English and French sentences that can translate new sentences from English to French
- Host: GitHub
- URL: https://github.com/jianguoz/dnld_language_translation-p4
- Owner: jianguoz
- Created: 2017-05-10T04:04:16.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-15T20:40:21.000Z (almost 8 years ago)
- Last Synced: 2025-01-16T02:31:53.122Z (3 months ago)
- Language: HTML
- Homepage:
- Size: 7.59 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DNLD_Language_Translation-P4
**Jianguo Zhang, May 11, 2017**Training a sequence to sequence model on a dataset of English and French sentences that can translate new sentences from English to French
### Examples of results:
'He think she is beautiful.'
* Input
* Word Ids: [206, 172, 93, 98, 2]
* English Words: ['he', 'think', 'she', 'is', '']* Prediction
* Word Ids: [83, 220, 182, 14, 159, 99, 140, 54, 251, 1]
* French Words: ['nos', 'fruits', 'est', 'la', 'banane', ',', 'mais', 'mon', 'préféré.', '']'He saw a old yellow truck .'
* Input
* Word Ids: [206, 163, 179, 25, 36, 195, 38]
* English Words: ['he', 'saw', 'a', 'old', 'yellow', 'truck', '.']* Prediction
* Word Ids: [259, 165, 274, 179, 43, 196, 203, 1]
* French Words: ['il', 'a', 'vu', 'un', 'vieux', 'camion', '.', '']