-
Updated
Oct 3, 2020 - HTML
cnn
Here are 5,104 public repositories matching this topic...
-
Updated
Oct 6, 2020 - GLSL
-
Updated
Oct 8, 2020 - C++
-
Updated
Oct 16, 2020 - Python
-
Updated
Oct 31, 2018 - Python
-
Updated
Sep 6, 2020 - C++
-
Updated
Oct 23, 2020 - Jupyter Notebook
-
Updated
Oct 6, 2020 - Python
-
Updated
Oct 23, 2020 - Python
-
Updated
Apr 1, 2020 - Swift
-
Updated
May 19, 2019 - Python
-
Updated
Sep 25, 2020 - Python
-
Updated
May 10, 2020 - Python
-
Updated
Oct 13, 2020 - Jupyter Notebook
-
Updated
Mar 23, 2019 - Python
-
Updated
Jan 3, 2019 - Python
-
Updated
Oct 27, 2020 - C
-
Updated
Sep 25, 2020 - Python
-
Updated
Oct 23, 2020
-
Updated
Apr 11, 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
Feb 27, 2019 - Jupyter Notebook
-
Updated
Apr 2, 2020
-
Updated
Oct 14, 2020
-
Updated
Sep 11, 2020 - C
-
Updated
Sep 18, 2020 - Jupyter Notebook
In augmentation, elastic_transform, it only applies a random transform on one input image array. I would think to be used for training, the image and mask pair should be transform in the same way. However, this single-input-image, single-output-image method makes it very inconvenient. Could we deform a list of images (np.arrays) using the same transformation in this method ? Thanks!
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)))