You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Chapter-wise code/Code - PyTorch/6. Natural-Language-Processing/6. Machine Translation/NMT-Basic/Readme.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,5 +5,39 @@
5
5
### Generate French and English Word Embedding
6
6
7
7
Here, we have 3 given parameters:
8
-
1.`en_embeddings`: English words and their corresponding embeddings.
8
+
1.`en_embeddings`: English words and their corresponding embeddings.<br>
9
9
<imgsrc="./images/en_embeddings.png"></img>
10
+
11
+
2.`fr_embeddings`: French words and their corresponding embeddings.<br>
12
+
<imgsrc="./images/fr_embedding.png"></img>
13
+
14
+
3.`en_fr`: English to French dictionary.<br>
15
+
<imgsrc="./images/en_fr_train.png"></img>
16
+
17
+
Now, we have to create an English embedding matrix and French embedding matrix:<br>
0 commit comments