From 0c1f3ef6fbef12b1c6292b1991c6a48772fd702c Mon Sep 17 00:00:00 2001 From: Emran-goat Date: Sun, 2 Aug 2026 20:14:20 +0300 Subject: [PATCH] fix typo in comment --- projects/home/recap/data/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/home/recap/data/dataset.py b/projects/home/recap/data/dataset.py index 3478c68..8750646 100644 --- a/projects/home/recap/data/dataset.py +++ b/projects/home/recap/data/dataset.py @@ -47,7 +47,7 @@ def to_batch(x, sparse_feature_names: Optional[List[str]] = None) -> RecapBatch: try: features_in, labels = x except ValueError: - # For Mode.INFERENCE, we do not expect to recieve labels as part of the input tuple + # For Mode.INFERENCE, we do not expect to receive labels as part of the input tuple features_in, labels = x, None sparse_features = keyed_jagged_tensor_from_tensors_dict({})