(self, beta=0.9999)
| 14 | |
| 15 | class Propagator(nn.Module): |
| 16 | def __init__(self, beta=0.9999): |
| 17 | super(Propagator, self).__init__() |
| 18 | self.beta = beta |
| 19 | |
| 20 | def process(self, initImg, contentImg): |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected