Commit
·
dc0fa7d
1
Parent(s):
ca82a24
init
Browse files
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
*.pth.tar filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
# DetCon PyTorch
|
6 |
+
|
7 |
+
PyTorch implementation of DetCon-B from ["Efficient Visual Pretraining with Contrastive Detection"](https://arxiv.org/abs/2103.10957) (Henaff et al., ICCV 2021).
|
8 |
+
|
9 |
+
## Pretrained Weights
|
10 |
+
|
11 |
+
We provide DetCon-B ResNet-50 weights pretrained on ImageNet-1K for 300 epochs:
|
12 |
+
|
13 |
+
| Format | Download | Use Case |
|
14 |
+
|--------|----------|----------|
|
15 |
+
| Original | detconb_resnet50_imagenet300.pth | Direct loading |
|
16 |
+
| Torchvision | detconb_resnet50_imagenet300_torchvision.pth | MMSegmentation |
|
17 |
+
| Detectron2 | detconb_resnet50_imagenet300_d2.pkl | Detectron2 |
|
18 |
+
|
19 |
+
## Usage
|
20 |
+
|
21 |
+
See [Github](https://github.com/KKallidromitis/detcon-pytorch) repo for how to use weights
|
detconb_resnet50_imagenet300.pth.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c293a02b231ee53ed3ed44dadd3a032aa2d18417cef4bdbb731b541fd2dc7093
|
3 |
+
size 413203709
|
detconb_resnet50_imagenet300_d2.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fe11f4e7fbf0e580f97ac7653d2365558361937bae55cb21c0f8a93e3a79dfb3
|
3 |
+
size 102462140
|
detconb_resnet50_imagenet300_torchvision.pth.tar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9a1bd699a57ec4dc6d0057d0117de0f1338c3aea01f7e757bf5f993baa62472c
|
3 |
+
size 102552843
|