Skip to content

Commit dcaf0ed

Browse files
committed
Our paper is accepted by ICLR 2023
Our paper is accepted by ICLR 2023
1 parent 3926ca1 commit dcaf0ed

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ This repo is the official implementation of:
44
### [Reversible Column Networks](https://arxiv.org/abs/2212.11696)
55
[Yuxuan Cai](https://nightsnack.github.io), [Yizhuang Zhou](https://scholar.google.com/citations?user=VRSGDDEAAAAJ), [Qi Han](https://hanqer.github.io), Jianjian Sun, Xiangwen Kong, Jun Li, [Xiangyu Zhang](https://scholar.google.com/citations?user=yuB-cfoAAAAJ) \
66
[MEGVII Technology](https://en.megvii.com)\
7+
International Conference on Learning Representations (ICLR) 2023\
78
[\[arxiv\]](https://arxiv.org/abs/2212.11696)
89

910

1011

1112
## Updates
13+
***1/21/2023***\
14+
RevCol was accepted by ICLR 2023!
15+
1216
***12/23/2022***\
1317
Initial commits: codes for ImageNet-1k and ImageNet-22k classification are released.
1418

@@ -62,10 +66,11 @@ If you have any questions about this repo or the original paper, please contact
6266

6367
## Citation
6468
```
65-
@article{cai2022reversible,
69+
@inproceedings{cai2022reversible,
6670
title={Reversible Column Networks},
6771
author={Cai, Yuxuan and Zhou, Yizhuang and Han, Qi and Sun, Jianjian and Kong, Xiangwen and Li, Jun and Zhang, Xiangyu},
68-
journal={arXiv preprint arXiv:2212.11696},
69-
year={2022}
72+
booktitle={International Conference on Learning Representations},
73+
year={2023},
74+
url={https://openreview.net/forum?id=Oc2vlWU0jFY}
7075
}
7176
```

optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def param_groups_lrd(model, weight_decay=0.05, no_weight_decay_list=[], layer_de
124124
def get_layer_id(n, dp, layers):
125125
if n.startswith("subnet"):
126126
name_part = n.split('.')
127-
subnet = int(name_part[0][-1])
127+
subnet = int(name_part[0][6:])
128128
if name_part[1].startswith("alpha"):
129129
id = dp[0][subnet]
130130
else:

0 commit comments

Comments
 (0)