-
Updated
Sep 15, 2020 - Python
cnn
Here are 2,294 public repositories matching this topic...
-
Updated
Oct 31, 2018 - Python
-
Updated
Aug 5, 2020 - Python
-
Updated
Sep 10, 2020 - Python
-
Updated
Aug 29, 2020 - Python
-
Updated
May 19, 2019 - Python
-
Updated
Feb 24, 2020 - Python
-
Updated
May 10, 2020 - Python
-
Updated
Mar 23, 2019 - Python
-
Updated
Jan 3, 2019 - Python
-
Updated
Mar 31, 2020 - Python
-
Updated
Apr 11, 2020 - Python
Notebook Examples
Add Unit Tests
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!
-
Updated
Apr 11, 2020 - Python
-
Updated
May 30, 2018 - Python
It seems that you used different criteria during training and testing as the code below shows:
IN TEST:
scores = np.dot(vecs.T, qvecs)
IN TRAIN:
dif = x1 - x2
D = torch.pow(dif+eps, 2).sum(dim=0).sqrt()
y = 0.5*lbl*torch.pow(D,2) + 0.5*(1-lbl)*torch.pow(torch.clamp(margin-D, min=0),2)
y = torch.sum(y)
I did not get it why you do so?
-
Updated
Oct 14, 2019 - Python
-
Updated
Jun 19, 2020 - Python
-
Updated
Sep 10, 2020 - Python
-
Updated
Mar 16, 2019 - Python
-
Updated
Dec 3, 2018 - Python
-
Updated
Jun 29, 2020 - Python
-
Updated
Feb 5, 2019 - Python
-
Updated
Dec 23, 2019 - Python
-
Updated
Oct 5, 2018 - Python
-
Updated
Nov 6, 2019 - Python
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."
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.