damccorm commented on code in PR #25370:
URL: https://github.com/apache/beam/pull/25370#discussion_r1100683036
##########
sdks/python/apache_beam/ml/inference/sklearn_inference_test.py:
##########
@@ -338,6 +372,42 @@ def test_pipeline_pandas(self):
assert_that(
actual, equal_to(expected, equals_fn=_compare_dataframe_predictions))
+ def test_pipeline_pandas_custom_batching(self):
+ temp_file_name = self.tmpdir + os.sep + 'pickled_file'
+ with open(temp_file_name, 'wb') as file:
+ pickle.dump(build_pandas_pipeline(), file)
+
+ def batch_validator_pandas_inference_fn(
+ model: BaseEstimator,
+ batch: Sequence[numpy.ndarray],
+ inference_args: Optional[Dict[str, Any]] = None) -> Any:
+ if len(batch) != 5:
+ raise Exception(
+ 'Expected batch of size 5, received batch of size {}'.format(
Review Comment:
I have no preference here - updated
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]