(self, x)
| 33 | self.transfers.append(Transfer(nin,nout,act,model)) |
| 34 | |
| 35 | def __call__(self, x): |
| 36 | for t in self.transfers: |
| 37 | x = t(x) |
| 38 | return x |
| 39 | |
| 40 | def get_components(self): |
| 41 | return self.transfers |
nothing calls this directly
no outgoing calls
no test coverage detected