evaluations/inception_v3.py [67:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                ]
            )
        )

    def forward(self, x):
        return torch.cat(
            [
                self.conv(x).contiguous(),
                self.tower(x).contiguous(),
                self.tower_1(x).contiguous(),
                self.tower_2(x).contiguous(),
            ],
            dim=1,
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



evaluations/inception_v3.py [175:188]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                ]
            )
        )

    def forward(self, x):
        return torch.cat(
            [
                self.conv(x).contiguous(),
                self.tower(x).contiguous(),
                self.tower_1(x).contiguous(),
                self.tower_2(x).contiguous(),
            ],
            dim=1,
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



