-
Updated
Nov 4, 2021 - Python
resnet
Here are 870 public repositories matching this topic...
-
Updated
Sep 25, 2021 - Python
-
Updated
Sep 27, 2021 - Python
-
Updated
May 18, 2021 - Python
-
Updated
Nov 4, 2021 - Python
-
Updated
Oct 29, 2021 - C++
Hi
when I do classification with the pretrained vggface2 model, how do I match a probability to a name? do you have a list of labels for the trained model?
Thanks
-
Updated
Dec 18, 2019 - Python
-
Updated
Apr 25, 2021 - Python
-
Updated
Feb 14, 2021
-
Updated
Aug 25, 2021 - Python
Yolov3 slow?
with video_demo.py about 20% speed compared to your 1.0 repo. but thanks much for sharing!
-
Updated
Jan 12, 2021 - Python
-
Updated
Mar 22, 2018 - Python
-
Updated
Apr 7, 2020 - Python
-
Updated
Jan 2, 2021 - Python
-
Updated
Mar 25, 2021 - Python
loss = F.binary_cross_entropy_with_logits(
pred, label, weight=class_weight, reduction='none')
it should be modified for “loss = F.binary_cross_entropy_with_logits( pred, label, pos_weight=class_weight, reduction='none')
def binary_cross_entropy(pred,
label,
weight=None,
reduction='mean',
-
Updated
Aug 24, 2021 - Python
-
Updated
Sep 29, 2021 - Python
-
Updated
Dec 29, 2020 - Jupyter Notebook
-
Updated
Nov 15, 2019 - Python
-
Updated
Sep 28, 2021 - Python
-
Updated
Nov 2, 2021 - Jupyter Notebook
-
Updated
Jul 20, 2021 - Python
-
Updated
Dec 7, 2020 - Jupyter Notebook
-
Updated
Dec 11, 2019 - Python
Improve this page
Add a description, image, and links to the resnet topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the resnet topic, visit your repo's landing page and select "manage topics."
Hello! In the Torch version of
Bottleneck, it appears thatself.dropblock2is never used.self.dropblock2is initialized in lines 52-56 ifradix == 1:https://github.com/zhanghang1989/ResNeSt/blob/master/resnest/torch/resnet.py#L52-L56