KonstantinosKK commited on
Commit
ed2d0c0
·
verified ·
1 Parent(s): af624c7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -21
README.md CHANGED
@@ -1,21 +1,32 @@
1
- ---
2
- license: mit
3
- ---
4
-
5
- # R2O PyTorch
6
-
7
- PyTorch implementation of R2O from ["Refine and Represent: Region-to-Object Representation Learning"](https://arxiv.org/abs/2208.11821) (Gokul et al., 2022).
8
-
9
- ## Pretrained Weights
10
-
11
- We provide R2O ResNet-50 weights pretrained on ImageNet-1K for 300 epochs:
12
-
13
- | Format | Download | Use Case |
14
- |-------------|----------------------------------------------------------------------------------------------------|-----------------|
15
- | Original | r2o_resnet50_imagenet300.pth | Direct loading |
16
- | Torchvision | r2o_resnet50_imagenet300_torchvision.pth | MMSegmentation |
17
- | Detectron2 | r2o_resnet50_imagenet300_d2.pkl | Detectron2 |
18
-
19
- ## Usage
20
-
21
- See [GitHub](https://github.com/KKallidromitis/r2o) repo for how to use weights.
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # R2O PyTorch
6
+
7
+ PyTorch implementation of R2O from ["Refine and Represent: Region-to-Object Representation Learning"](https://arxiv.org/abs/2208.11821) (Gokul et al., 2022).
8
+
9
+ ## Pretrained Weights
10
+
11
+ We provide R2O ResNet-50 weights pretrained on ImageNet-1K for 300 epochs:
12
+
13
+ | Format | Download | Use Case |
14
+ |-------------|----------------------------------------------------------------------------------------------------|-----------------|
15
+ | Original | r2o_resnet50_imagenet300.pth | Direct loading |
16
+ | Torchvision | r2o_resnet50_imagenet300_torchvision.pth | MMSegmentation |
17
+ | Detectron2 | r2o_resnet50_imagenet300_d2.pkl | Detectron2 |
18
+
19
+ ## Usage
20
+
21
+ See [GitHub](https://github.com/KKallidromitis/r2o) repo for how to use weights.
22
+
23
+ ## Citing this work
24
+
25
+ ```
26
+ @misc{gokul2022refine,
27
+ title = {Refine and Represent: Region-to-Object Representation Learning},
28
+ author = {Gokul, Akash and Kallidromitis, Konstantinos and Li, Shufan and Kato, Yusuke and Kozuka, Kazuki and Darrell, Trevor and Reed, Colorado J},
29
+ journal={arXiv preprint arXiv:2208.11821},
30
+ year = {2022}
31
+ }
32
+ ```