duongttr commited on
Commit
d6b21e8
Β·
1 Parent(s): 04f5f0c

Update app_config.py

Browse files
Files changed (1) hide show
  1. app_config.py +41 -9
app_config.py CHANGED
@@ -1,9 +1,41 @@
1
- ckpt_path = 'checkpoints/epoch_20'
2
- TITLE = 'Deep Exemplar-based Video Colorization using Vision Transformer'
3
- DESCRIPTION = '''
4
- <center>
5
- This is a demo app of the thesis: <b>Deep Exemplar-based Video Colorization using Vision Transformer</b>.<br/>
6
- The code is available at: <i>The link will be updated soon</i>.<br/>
7
- Our previous work was also written into paper and accepted at the <a href="https://ictc.org/program_proceeding">ICTC 2023 conference</a> (Section <i>B1-4</i>).
8
- </center>
9
- '''.strip()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ckpt_path = 'checkpoints/v1.0.0'
2
+ CONTENT = '''
3
+ <h2 style="text-align: center;">Deep Exemplar-based Video Colorization using Vision Transformer</h3>
4
+ <p style="text-align: center;">
5
+ <a href="https://github.com/Chronopt-Research/video_colorization">GitHub</a> | <a href="">Report</a> | <a href="https://ictc.org/program_proceeding">Paper (Section B1-4)</a>
6
+ </p>
7
+
8
+ # Demo
9
+ '''
10
+
11
+ APPENDIX = '''
12
+ ---
13
+
14
+ # Appendix
15
+
16
+ ## What is Exemplar-based Video Colorization?
17
+
18
+ Exemplar-based video colorization is a technique used to add color to black-and-white or monochrome videos. It leverages the concept of exemplars, which are reference images that contain color information similar to the target video frames. By analyzing the exemplars and the target frames, the colorization algorithm transfers the colors from the exemplars to the corresponding regions in the target frames.
19
+
20
+ Our proposed model represents a significant advancement in video colorization technology. By harnessing the potential of the Vision Transformer architecture, specifically the Swin Transformer variant, we have established a state-of-the-art solution that combines exceptional speed optimization with the generation of colorful and vivid videos. The benchmark results are shown in the "Report" above.
21
+
22
+ ## Achievements & Publications
23
+ - We won the πŸ₯ˆ **The First Runner-up Award** in the [FPT Research Festival HCMC 2023]().
24
+ - We won the πŸ† **The Champion Award** in the FPT Research Festival Edu 2023.
25
+ - We published πŸ“ an accepted paper in the **ICTC 2023** conference.
26
+
27
+ ## Citation
28
+ If you find our work useful in your research, please consider citing:
29
+ ```
30
+ @INPROCEEDINGS{duong2023vitexco,
31
+ author={Tran, Duong Thanh and Nguyen, Nguyen Doan Hieu and Pham, Trung Thanh and Tran, Phuong-Nam and Vu, Thuy-Duong Thi and Dang, Duc Ngoc Minh},
32
+ booktitle={2023 14th International Conference on Information and Communication Technology Convergence (ICTC)},
33
+ title={Vitexco: Exemplar-based Video Colorization using Vision Transformer},
34
+ year={2023},
35
+ volume={},
36
+ number={},
37
+ pages={59-64},
38
+ doi={},
39
+ }
40
+ ```
41
+ '''