Method
__init__
(self, height_feat_size=13, compress_level=0, train_completion=False)
Source from the content-addressed store, hash-verified
| 268 | """Used by non-intermediate models. Pass the output from encoder directly to decoder.""" |
| 269 | |
| 270 | def __init__(self, height_feat_size=13, compress_level=0, train_completion=False): |
| 271 | super().__init__(height_feat_size, compress_level, train_completion) |
| 272 | |
| 273 | def forward(self, x): |
| 274 | batch, seq, z, h, w = x.size() |
Callers
nothing calls this directly
Tested by
no test coverage detected