-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement IconVSR #384
Implement IconVSR #384
Conversation
mid_channels (int): Channel number of the intermediate features. | ||
Default: 64. | ||
num_blocks (int): Number of residual blocks in each propagation branch. | ||
Default: 30. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
padding and keyframe_stride ??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, thanks
(t-1-i)-th frame. | ||
|
||
Args: | ||
lrs (tensor): Input LR images with shape (n, t, c, h, w) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add Returns
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done thanks
ppgan/models/generators/iconvsr.py
Outdated
|
||
self.center_frame_idx = center_frame_idx | ||
self.with_tsa = with_tsa | ||
# act_cfg = dict(type='LeakyReLU', negative_slope=0.1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
del # act_cfg = dict(type='LeakyReLU', negative_slope=0.1)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done ,thanks
ppgan/models/generators/iconvsr.py
Outdated
center_frame_idx (int): The index of center frame. Frame counting from | ||
0. Default: 2. | ||
with_tsa (bool): Whether to use TSA module. Default: True. | ||
pretrained (str): The pretrained model path. Default: None. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
貌似没有pretrained参数
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, thanks
No description provided.