ArmandXiao commited on
Commit
e4588a1
1 Parent(s): dff685f

accepted by IEEE T-PAMI

Browse files
Files changed (1) hide show
  1. app.py +9 -4
app.py CHANGED
@@ -12,17 +12,22 @@ from src.assets.awesome_mapping import paper_mapping, section_mapping, bibtex_ma
12
 
13
  TITLE = "🔥CNN Structured Pruning Leaderboard"
14
  PAPER_LINK = 'https://arxiv.org/abs/2303.00566'
 
15
  AWESOME_PRUNING_LINK = 'https://github.com/he-y/Awesome-Pruning'
16
  BIBTEX = '''
17
  @article{he2023structured,
18
- title={Structured Pruning for Deep Convolutional Neural Networks: A survey},
19
  author={He, Yang and Xiao, Lingao},
20
- journal={arXiv preprint arXiv:2303.00566},
21
- year={2023}
22
- }
 
 
 
 
23
  '''
24
  INTRO = f"""
25
  Welcome to our dedicated site for the survey paper: "[Structured Pruning for Deep Convolutional Neural Networks: A Survey]({PAPER_LINK})".
 
26
 
27
  Github Repo: [Awesome Pruning: A curated list of neural network pruning resources]({AWESOME_PRUNING_LINK}).
28
 
 
12
 
13
  TITLE = "🔥CNN Structured Pruning Leaderboard"
14
  PAPER_LINK = 'https://arxiv.org/abs/2303.00566'
15
+ PAPER_LINK_IEEE = 'https://ieeexplore.ieee.org/document/10330640'
16
  AWESOME_PRUNING_LINK = 'https://github.com/he-y/Awesome-Pruning'
17
  BIBTEX = '''
18
  @article{he2023structured,
 
19
  author={He, Yang and Xiao, Lingao},
20
+ journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
21
+ title={Structured Pruning for Deep Convolutional Neural Networks: A Survey},
22
+ year={2023},
23
+ volume={},
24
+ number={},
25
+ pages={1-20},
26
+ doi={10.1109/TPAMI.2023.3334614}}
27
  '''
28
  INTRO = f"""
29
  Welcome to our dedicated site for the survey paper: "[Structured Pruning for Deep Convolutional Neural Networks: A Survey]({PAPER_LINK})".
30
+ Our survey is accepted by IEEE T-PAMI. Links include [arXiv]({PAPER_LINK}) and [IEEE Xplore]({PAPER_LINK_IEEE}).
31
 
32
  Github Repo: [Awesome Pruning: A curated list of neural network pruning resources]({AWESOME_PRUNING_LINK}).
33