File tree 1 file changed +53
-0
lines changed
1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 1
1
model_zoo
2
2
3
+
4
+
5
+ download all the models:
6
+ ```
7
+ python main_download_pretrained_models.py --models "all" --model_dir "model_zoo"
8
+ ```
9
+ download DnCNN models:
10
+ ```
11
+ python main_download_pretrained_models.py --models "DnCNN" --model_dir "model_zoo"
12
+ ```
13
+ download SRMD models:
14
+ ```
15
+ python main_download_pretrained_models.py --models "SRMD" --model_dir "model_zoo"
16
+ ```
17
+ download BSRGAN models:
18
+ ```
19
+ python main_download_pretrained_models.py --models "BSRGAN" --model_dir "model_zoo"
20
+ ```
21
+ download FFDNet models:
22
+ ```
23
+ python main_download_pretrained_models.py --models "FFDNet" --model_dir "model_zoo"
24
+ ```
25
+ download DPSR models:
26
+ ```
27
+ python main_download_pretrained_models.py --models "DPSR" --model_dir "model_zoo"
28
+ ```
29
+ download SwinIR models:
30
+ ```
31
+ python main_download_pretrained_models.py --models "SwinIR" --model_dir "model_zoo"
32
+ ```
33
+ download other models:
34
+ ```
35
+ python main_download_pretrained_models.py --models "others" --model_dir "model_zoo"
36
+ ```
37
+ ------------------------------------------------------------------
38
+ download 'dncnn_15.pth' and 'dncnn_50.pth'
39
+ ```
40
+ python main_download_pretrained_models.py --models "dncnn_15.pth dncnn_50.pth" --model_dir "model_zoo"
41
+ ```
42
+ ------------------------------------------------------------------
43
+ download DnCNN models and 'BSRGAN.pth'
44
+ ```
45
+ python main_download_pretrained_models.py --models "DnCNN BSRGAN.pth" --model_dir "model_zoo"
46
+ ```
47
+
48
+
49
+
50
+
51
+
52
+
53
+ ------------------------------------------------------------------
54
+
55
+
3
56
* Github download link: https://github.com/cszn/KAIR/releases/tag/v1.0
4
57
* Google drive download link: [ https://drive.google.com/drive/folders/13kfr3qny7S2xwG9h7v95F5mkWs0OmU0D?usp=sharing ] ( https://drive.google.com/drive/folders/13kfr3qny7S2xwG9h7v95F5mkWs0OmU0D?usp=sharing )
5
58
You can’t perform that action at this time.
0 commit comments