-
Updated
Oct 3, 2020 - HTML
cnn
Here are 5,244 public repositories matching this topic...
-
Updated
Oct 6, 2020 - GLSL
-
Updated
Nov 11, 2020 - C++
-
Updated
Nov 24, 2020 - Python
-
Updated
Oct 31, 2018 - Python
-
Updated
Oct 31, 2020 - Jupyter Notebook
-
Updated
Sep 6, 2020 - C++
-
Updated
Nov 21, 2020 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
Oct 6, 2020 - Python
-
Updated
Oct 23, 2020 - Python
-
Updated
Apr 1, 2020 - Swift
-
Updated
May 19, 2019 - Python
-
Updated
Nov 13, 2020 - Python
-
Updated
May 10, 2020 - Python
-
Updated
Nov 16, 2020 - Jupyter Notebook
-
Updated
Nov 30, 2020 - C
-
Updated
Mar 23, 2019 - Python
-
Updated
Jan 3, 2019 - Python
-
Updated
Nov 13, 2020 - Python
-
Updated
Nov 28, 2020
-
Updated
Nov 10, 2020 - Python
-
Updated
Sep 1, 2020 - C++
Notebook Examples
The current examples are in the form of scripts. To make easier and more interactive for users of the library it would help to have notebooks demonstrating these examples. For now the notebooks would go under examples folder under branch 2.0 where porting to Python 3+ is happening.
Add Unit Tests
-
Updated
Apr 2, 2020
-
Updated
Feb 27, 2019 - Jupyter Notebook
-
Updated
Oct 29, 2020
-
Updated
Sep 11, 2020 - C
Improve this page
Add a description, image, and links to the cnn topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cnn 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)))