Skip to content

Commit

Permalink
Our paper is accepted by ICLR 2023
Browse files Browse the repository at this point in the history
Our paper is accepted by ICLR 2023
  • Loading branch information
nightsnack committed Jan 21, 2023
1 parent 3926ca1 commit dcaf0ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ This repo is the official implementation of:
### [Reversible Column Networks](https://arxiv.org/abs/2212.11696)
[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) \
[MEGVII Technology](https://en.megvii.com)\
International Conference on Learning Representations (ICLR) 2023\
[\[arxiv\]](https://arxiv.org/abs/2212.11696)



## Updates
***1/21/2023***\
RevCol was accepted by ICLR 2023!

***12/23/2022***\
Initial commits: codes for ImageNet-1k and ImageNet-22k classification are released.

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

## Citation
```
@article{cai2022reversible,
@inproceedings{cai2022reversible,
title={Reversible Column Networks},
author={Cai, Yuxuan and Zhou, Yizhuang and Han, Qi and Sun, Jianjian and Kong, Xiangwen and Li, Jun and Zhang, Xiangyu},
journal={arXiv preprint arXiv:2212.11696},
year={2022}
booktitle={International Conference on Learning Representations},
year={2023},
url={https://openreview.net/forum?id=Oc2vlWU0jFY}
}
```
2 changes: 1 addition & 1 deletion optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def param_groups_lrd(model, weight_decay=0.05, no_weight_decay_list=[], layer_de
def get_layer_id(n, dp, layers):
if n.startswith("subnet"):
name_part = n.split('.')
subnet = int(name_part[0][-1])
subnet = int(name_part[0][6:])
if name_part[1].startswith("alpha"):
id = dp[0][subnet]
else:
Expand Down

0 comments on commit dcaf0ed

Please sign in to comment.