Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix signatures of TorchModel.cross_validate
Summary: Some subclasses were missing SSD input, which leads to errors when called from `TorchAdapter` as ``` f_test, cov_test = none_throws(self.model).cross_validate( datasets=datasets, X_test=torch.as_tensor(X_test, dtype=self.dtype, device=self.device), search_space_digest=search_space_digest, use_posterior_predictive=use_posterior_predictive, ) ``` This was something raised by pyre but it was being suppressed. Differential Revision: D69951061
- Loading branch information