-
Updated
Oct 29, 2021 - Python
classification
Here are 7,576 public repositories matching this topic...
-
Updated
Nov 2, 2021 - Python
-
Updated
Apr 1, 2021 - Jupyter Notebook
-
Updated
Sep 8, 2020
-
Updated
Oct 20, 2021 - Java
-
Updated
Nov 3, 2021 - Python
-
Updated
Dec 14, 2019 - Jupyter Notebook
Include
- functions from functional API,
- overview of object oriented approach
- Common arguments that are used with each function/method
-
Updated
Oct 31, 2020 - Python
-
Updated
Oct 28, 2021 - JavaScript
-
Updated
May 19, 2019 - Python
-
Updated
Apr 21, 2021 - Python
-
Updated
Nov 4, 2021 - Python
-
Updated
Nov 3, 2021 - Python
-
Updated
Nov 2, 2021 - Java
-
Updated
Oct 25, 2021 - Python
-
Updated
Oct 29, 2021 - Python
-
Updated
May 16, 2020 - Python
-
Updated
Oct 22, 2021 - Jupyter Notebook
-
Updated
Aug 16, 2021 - Python
-
Updated
Nov 3, 2021 - Go
-
Updated
Jul 8, 2021 - Python
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Oct 29, 2021 - Python
-
Updated
Apr 5, 2020 - Python
-
Updated
Nov 3, 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
Nov 1, 2021 - PHP
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."

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.


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)))