-
Updated
Oct 19, 2020 - HTML
solutions
Here are 1,293 public repositories matching this topic...
-
Updated
Oct 2, 2020 - Java
-
Updated
Oct 27, 2020 - Python
-
Updated
Oct 19, 2020 - Jupyter Notebook
-
Updated
Oct 4, 2020 - Java
-
Updated
Jul 20, 2018 - Jupyter Notebook
-
Updated
Oct 23, 2020 - C++
-
Updated
Oct 16, 2020 - JavaScript
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Feb 15, 2018 - C++
-
Updated
Apr 30, 2020 - Java
-
Updated
May 5, 2019 - Java
-
Updated
Oct 2, 2020 - Jupyter Notebook
-
Updated
Oct 11, 2020 - Python
-
Updated
Oct 6, 2020 - Jupyter Notebook
-
Updated
Oct 27, 2020 - JavaScript
-
Updated
Oct 7, 2020 - C++
-
Updated
Nov 27, 2017 - Python
-
Updated
Oct 10, 2020 - Python
-
Updated
May 7, 2019 - Jupyter Notebook
-
Updated
Oct 22, 2020 - Python
-
Updated
Oct 1, 2020 - C++
-
Updated
Oct 13, 2020 - Python
Improve this page
Add a description, image, and links to the solutions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the solutions topic, visit your repo's landing page and select "manage topics."
Nice work!
The version of implementation can reach 22+ BLUE score. However, my implementation have only 0.16+ BLUE score on test dataset. Comparing with your work, I found changing the concatenation
torch.cat((Y_t, o_pre), dim=1)
totorch.cat((o_pre, Y_t), dim=1)
can only reach 0.16+ BLUE score.B.W.T. chaging the concatenating order between
dec_hidden
anda_t
instep
function also