-
Updated
Dec 2, 2020 - Python
rnn
Here are 2,016 public repositories matching this topic...
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Nov 21, 2020 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
May 19, 2019 - Python
-
Updated
Sep 16, 2020 - Python
-
Updated
Oct 6, 2020 - Jupyter Notebook
-
Updated
Nov 13, 2020 - Python
-
Updated
May 29, 2019 - Python
-
Updated
Oct 15, 2019 - Jupyter Notebook
-
Updated
Nov 16, 2020 - Jupyter Notebook
-
Updated
Jun 1, 2020 - Jupyter Notebook
-
Updated
Mar 23, 2019 - Python
-
Updated
Jun 11, 2020 - Python
-
Updated
Nov 28, 2020
-
Updated
Nov 28, 2020 - C
-
Updated
Oct 15, 2018 - Jupyter Notebook
-
Updated
Sep 18, 2020 - Jupyter Notebook
-
Updated
Oct 9, 2019 - Python
-
Updated
Mar 25, 2020 - CSS
-
Updated
Aug 1, 2017 - Jupyter Notebook
-
Updated
Jul 3, 2019 - Jupyter Notebook
-
Updated
Oct 12, 2020 - Python
-
Updated
Oct 6, 2019 - Python
-
Updated
Dec 20, 2019 - Python
-
Updated
Oct 21, 2020 - Python
-
Updated
Jun 19, 2017 - Python
-
Updated
Oct 24, 2019 - Jupyter Notebook
-
Updated
Oct 15, 2018 - Python
Improve this page
Add a description, image, and links to the rnn topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the rnn topic, visit your repo's landing page and select "manage topics."
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))