(self, x, y=None)
| 766 | self.model = nn.Sequential(*self.model) |
| 767 | |
| 768 | def forward(self, x, y=None): |
| 769 | if y is not None: |
| 770 | return self.model(cat_feature(x, y)) |
| 771 | else: |
| 772 | return self.model(x) |
| 773 | |
| 774 | ################################################################################## |
| 775 | # Sequential Models |
nothing calls this directly
no test coverage detected