forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement basicvsr (PaddlePaddle#356)
* add basicvsr model
- Loading branch information
1 parent
058faa8
commit 4bb2686
Showing
11 changed files
with
1,140 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
total_iters: 300000 | ||
output_dir: output_dir | ||
find_unused_parameters: True | ||
checkpoints_dir: checkpoints | ||
use_dataset: True | ||
# tensor range for function tensor2img | ||
min_max: | ||
(0., 1.) | ||
|
||
model: | ||
name: BasicVSRModel | ||
fix_iter: 5000 | ||
generator: | ||
name: BasicVSRNet | ||
mid_channels: 64 | ||
num_blocks: 30 | ||
pixel_criterion: | ||
name: CharbonnierLoss | ||
reduction: mean | ||
|
||
dataset: | ||
train: | ||
name: RepeatDataset | ||
times: 1000 | ||
num_workers: 4 # 6 | ||
batch_size: 2 # 4*2 | ||
dataset: | ||
name: SRREDSMultipleGTDataset | ||
mode: train | ||
lq_folder: data/REDS/train_sharp_bicubic/X4 | ||
gt_folder: data/REDS/train_sharp/X4 | ||
crop_size: 256 | ||
interval_list: [1] | ||
random_reverse: False | ||
number_frames: 15 | ||
use_flip: True | ||
use_rot: True | ||
scale: 4 | ||
val_partition: REDS4 | ||
|
||
test: | ||
name: SRREDSMultipleGTDataset | ||
mode: test | ||
lq_folder: data/REDS/REDS4_test_sharp_bicubic/X4 | ||
gt_folder: data/REDS/REDS4_test_sharp/X4 | ||
interval_list: [1] | ||
random_reverse: False | ||
number_frames: 100 | ||
use_flip: False | ||
use_rot: False | ||
scale: 4 | ||
val_partition: REDS4 | ||
num_workers: 0 | ||
batch_size: 1 | ||
|
||
lr_scheduler: | ||
name: CosineAnnealingRestartLR | ||
learning_rate: !!float 2e-4 | ||
periods: [300000] | ||
restart_weights: [1] | ||
eta_min: !!float 1e-7 | ||
|
||
optimizer: | ||
name: Adam | ||
# add parameters of net_name to optim | ||
# name should in self.nets | ||
net_names: | ||
- generator | ||
beta1: 0.9 | ||
beta2: 0.99 | ||
|
||
validate: | ||
# FIXME: avoid oom | ||
interval: 5000000 | ||
save_img: false | ||
|
||
metrics: | ||
psnr: # metric name, can be arbitrary | ||
name: PSNR | ||
crop_border: 0 | ||
test_y_channel: False | ||
ssim: | ||
name: SSIM | ||
crop_border: 0 | ||
test_y_channel: False | ||
|
||
log_config: | ||
interval: 100 | ||
visiual_interval: 500 | ||
|
||
snapshot_config: | ||
interval: 5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import paddle | ||
|
||
|
||
class RepeatDataset(paddle.io.Dataset): | ||
"""A wrapper of repeated dataset. | ||
The length of repeated dataset will be `times` larger than the original | ||
dataset. This is useful when the data loading time is long but the dataset | ||
is small. Using RepeatDataset can reduce the data loading time between | ||
epochs. | ||
Args: | ||
dataset (:obj:`Dataset`): The dataset to be repeated. | ||
times (int): Repeat times. | ||
""" | ||
|
||
def __init__(self, dataset, times): | ||
self.dataset = dataset | ||
self.times = times | ||
|
||
self._ori_len = len(self.dataset) | ||
|
||
def __getitem__(self, idx): | ||
"""Get item at each call. | ||
Args: | ||
idx (int): Index for getting each item. | ||
""" | ||
return self.dataset[idx % self._ori_len] | ||
|
||
def __len__(self): | ||
"""Length of the dataset. | ||
Returns: | ||
int: Length of the dataset. | ||
""" | ||
return self.times * self._ori_len |
Oops, something went wrong.