anuragshas commited on
Commit
5c3a2a2
1 Parent(s): 850da7a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - fr
5
+
6
+ tags:
7
+ - seq2seq
8
+ - translation
9
+
10
+ license:
11
+ - cc0-1.0
12
+ ---
13
+
14
+ ## Keras Implementation of Character-level recurrent sequence-to-sequence model
15
+
16
+ This repo contains the model and the notebook [to this Keras example on Character-level recurrent sequence-to-sequence model](https://keras.io/examples/nlp/lstm_seq2seq/).
17
+
18
+ Full credits to: [fchollet](https://twitter.com/fchollet)
19
+
20
+ ## Background Information
21
+ 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.