-
Updated
Oct 22, 2020 - Python
classification
Here are 5,836 public repositories matching this topic...
-
Updated
Jan 13, 2021 - Python
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Sep 8, 2020
-
Updated
Jan 15, 2021 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
Jan 17, 2021 - JavaScript
-
Updated
May 19, 2019 - Python
-
Updated
Dec 16, 2019 - Python
- What's wrong?
Rank widget does not show that Manual selection is active, if:
- Best ranked was active.
- I clicked into the white part of the table to deselect.
The "Select Attributes" radio button still has "Best ranked" active, but nothing is selected (and the status bar shows that nothing gets to the output). Instead, the "Select Attributes" radio button should switch to "
-
Updated
Jan 13, 2021 - Python
-
Updated
Jan 21, 2021 - Python
-
Updated
May 16, 2020 - Python
-
Updated
Dec 9, 2020 - Jupyter Notebook
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Dec 10, 2020 - Python
-
Updated
Jan 19, 2021 - Python
-
Updated
Apr 5, 2020 - Python
-
Updated
Jan 21, 2021 - R
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 14, 2021 - Python
-
Updated
Dec 14, 2020 - C++
-
Updated
Mar 22, 2018 - Python
-
Updated
Nov 30, 2020 - Python
-
Updated
Jan 21, 2021 - Python
Basic file logger
-
Updated
Nov 24, 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)))