-
Updated
Oct 22, 2020 - Python
classification
Here are 5,371 public repositories matching this topic...
-
Updated
Oct 13, 2020 - Python
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Sep 8, 2020
-
Updated
Oct 31, 2020 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
Oct 30, 2020 - JavaScript
-
Updated
May 19, 2019 - Python
-
Updated
Dec 16, 2019 - Python
-
Updated
Oct 31, 2020 - Python
-
Updated
May 16, 2020 - Python
-
Updated
Oct 27, 2020 - Python
-
Updated
Oct 16, 2020 - Jupyter Notebook
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Sep 26, 2020 - Python
-
Updated
Oct 8, 2020 - Python
-
Updated
Apr 5, 2020 - Python
-
Updated
Nov 1, 2020 - R
-
Updated
Mar 22, 2018 - Python
-
Updated
Jul 22, 2020 - C++
-
Updated
Aug 6, 2020 - Python
-
Updated
Jan 24, 2020 - Python
-
Updated
Oct 30, 2020 - Python
-
Updated
Sep 25, 2020 - Python
-
Updated
May 7, 2020 - Python
Improve this page
Add a description, image, and links to the classification topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the classification 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)))