hzwer / Practical-RIFE

More practical frame interpolation approach.
MIT License
595 stars 63 forks source link

Is there different way to use v4.20? #84

Closed 2994dd42d75b0 closed 2 months ago

2994dd42d75b0 commented 2 months ago

When using v4.20 model = Model() NameError: name 'Model' is not defined

When using v4.18 Loaded 3.x/4.x HD model.

Am i doing something wrong here?

2994dd42d75b0 commented 2 months ago

Found problem in IFNet_HDv3 Deleted this ''' self.teacher = Flownet(8+4+16+3, c=96) self.caltime = nn.Sequential( nn.Conv2d(16+9, 32, 3, 2, 1), nn.LeakyReLU(0.2, True), nn.Conv2d(32, 64, 3, 2, 1), nn.LeakyReLU(0.2, True), nn.Conv2d(64, 64, 3, 1, 1), nn.LeakyReLU(0.2, True), nn.Conv2d(64, 64, 3, 1, 1), nn.LeakyReLU(0.2, True), nn.Conv2d(64, 1, 3, 1, 1), nn.Sigmoid() ) '''

Now Woking