CDVD-TSP icon indicating copy to clipboard operation
CDVD-TSP copied to clipboard

Modified model

Open agnieszkajust opened this issue 3 years ago • 1 comments

How should I change class Decoder if I want to learn Network with additional: torch.nn.Conv2d(in_channels=16, out_channels=16, kernel_size=3, stride=1, padding=1), torch.nn.LeakyReLU(inplace=False, negative_slope=0.1) in each module in Extractor.

agnieszkajust avatar Apr 23 '21 12:04 agnieszkajust

This is part of https://github.com/sniklaus/pytorch-pwc and you would need to not load the pre-trained model network-default.pytorch which it loads into the Flow_PWC model. Also the in_channels would be intCurrent + 128 + 128 + 96 + 64 + 32 with out_channels=16. There are several other places you would need to adjust the in_channels

It is still trainable without the pre-trained model for the flow.

Etienne66 avatar Nov 05 '21 04:11 Etienne66