-
Updated
Nov 24, 2021 - Python
classification
Here are 8,001 public repositories matching this topic...
-
Updated
Nov 2, 2021 - Python
-
Updated
Apr 1, 2021 - Jupyter Notebook
-
Updated
Dec 17, 2021
-
Updated
Jan 7, 2022 - Python
-
Updated
Jan 7, 2022 - Java
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is.
to_csv is slow and cost lot storage
Describe the solution you'd like
A clear and concise description of what you want to happen, ideally taking into consideration the existing toolbox design, classes and methods.
use to_feather to make it more efficient and sm
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
May 19, 2019 - Python
-
Updated
Oct 28, 2021 - JavaScript
-
Updated
Nov 9, 2021 - Python
-
Updated
Jan 7, 2022 - Python
-
Updated
Jan 7, 2022 - Python
-
Updated
Dec 16, 2021 - Python
-
Updated
Jan 7, 2022 - Java
-
Updated
Dec 14, 2021 - Python
-
Updated
Oct 22, 2021 - Jupyter Notebook
-
Updated
May 16, 2020 - Python
-
Updated
Jan 6, 2022 - Go
-
Updated
Aug 16, 2021 - Python
-
Updated
Jul 8, 2021 - Python
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Dec 27, 2021 - Python
Support Python 3.10
Python 3.10 has been released. We should test it. If all the dependencies support it, we should add it to CI.
-
Updated
Apr 5, 2020 - Python
-
Updated
Dec 29, 2021 - Jupyter Notebook
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 7, 2022 - R
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)))