Nymbo commited on
Commit
3ca0e4a
1 Parent(s): 000c2a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -31
app.py CHANGED
@@ -94,36 +94,6 @@ load_network(model, MODEL_NAME, strict=True, param_key='params')
94
 
95
 
96
  title = "See More Details"
97
- description = ''' ### See More Details: Efficient Image Super-Resolution by Experts Mining - ICML 2024, Vienna, Austria
98
-
99
- #### [Eduard Zamfir<sup>1</sup>](https://eduardzamfir.github.io), [Zongwei Wu<sup>1*</sup>](https://sites.google.com/view/zwwu/accueil), [Nancy Mehta<sup>1</sup>](https://scholar.google.com/citations?user=WwdYdlUAAAAJ&hl=en&oi=ao), [Yulun Zhang<sup>2,3*</sup>](http://yulunzhang.com/) and [Radu Timofte<sup>1</sup>](https://www.informatik.uni-wuerzburg.de/computervision/)
100
-
101
- #### **<sup>1</sup> University of Würzburg, Germany - <sup>2</sup> Shanghai Jiao Tong University, China - <sup>3</sup> ETH Zürich, Switzerland**
102
- #### **<sup>*</sup> Corresponding authors**
103
-
104
- <details>
105
- <summary> <b> Abstract</b> (click me to read)</summary>
106
- <p>
107
- Reconstructing high-resolution (HR) images from low-resolution (LR) inputs poses a significant challenge in image super-resolution (SR). While recent approaches have demonstrated the efficacy of intricate operations customized for various objectives, the straightforward stacking of these disparate operations can result in a substantial computational burden, hampering their practical utility. In response, we introduce **S**eemo**R**e, an efficient SR model employing expert mining. Our approach strategically incorporates experts at different levels, adopting a collaborative methodology. At the macro scale, our experts address rank-wise and spatial-wise informative features, providing a holistic understanding. Subsequently, the model delves into the subtleties of rank choice by leveraging a mixture of low-rank experts. By tapping into experts specialized in distinct key factors crucial for accurate SR, our model excels in uncovering intricate intra-feature details. This collaborative approach is reminiscent of the concept of **see more**, allowing our model to achieve an optimal performance with minimal computational costs in efficient settings
108
- </p>
109
- </details>
110
-
111
-
112
- #### Drag the slider on the super-resolution image left and right to see the changes in the image details. SeemoRe performs x4 upscaling on the input image.
113
-
114
- <br>
115
-
116
- <code>
117
- @inproceedings{zamfir2024details,
118
- title={See More Details: Efficient Image Super-Resolution by Experts Mining},
119
- author={Eduard Zamfir and Zongwei Wu and Nancy Mehta and Yulun Zhang and Radu Timofte},
120
- booktitle={International Conference on Machine Learning},
121
- year={2024},
122
- organization={PMLR}
123
- }
124
- </code>
125
- <br>
126
- '''
127
 
128
 
129
  article = "<p style='text-align: center'><a href='https://eduardzamfir.github.io/seemore' target='_blank'>See More Details: Efficient Image Super-Resolution by Experts Mining</a></p>"
@@ -163,10 +133,10 @@ demo = gr.Interface(
163
  show_download_button=True,
164
  ), #[gr.Image(type="pil", label="Ouput", min_width=500)],
165
  title=title,
166
- description=description,
167
  article=article,
168
  examples=examples,
169
  css=css,
 
170
  )
171
 
172
  if __name__ == "__main__":
 
94
 
95
 
96
  title = "See More Details"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
 
98
 
99
  article = "<p style='text-align: center'><a href='https://eduardzamfir.github.io/seemore' target='_blank'>See More Details: Efficient Image Super-Resolution by Experts Mining</a></p>"
 
133
  show_download_button=True,
134
  ), #[gr.Image(type="pil", label="Ouput", min_width=500)],
135
  title=title,
 
136
  article=article,
137
  examples=examples,
138
  css=css,
139
+ theme="Nymbo/Alyx_Theme"
140
  )
141
 
142
  if __name__ == "__main__":