-
Updated
Oct 22, 2020 - Python
classification
Here are 5,401 public repositories matching this topic...
-
Updated
Oct 13, 2020 - Python
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Sep 8, 2020
-
Updated
Nov 7, 2020 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
Nov 6, 2020 - JavaScript
-
Updated
May 19, 2019 - Python
-
Updated
Dec 16, 2019 - Python
-
Updated
Nov 8, 2020 - Python
-
Updated
May 16, 2020 - Python
-
Updated
Nov 7, 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
Nov 6, 2020 - Python
Add a way to change the sample id output in the annotation process to a specific number (see picture).
Reason: I want to annotate large text and the app don't like it when the documents to annotate are too large, so I spitted in a sentence the document but I would like to be able to
-
Updated
Jan 24, 2020 - Python
-
Updated
Nov 6, 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)))