From bdaa99ed22cbb9dfb66dcdd97eb6089f0d371501 Mon Sep 17 00:00:00 2001 From: Yousif Alsaffar Date: Mon, 14 Oct 2024 19:53:04 +0300 Subject: [PATCH] fix a comment --- aepsych/strategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aepsych/strategy.py b/aepsych/strategy.py index 931411ad2..dc9484961 100644 --- a/aepsych/strategy.py +++ b/aepsych/strategy.py @@ -315,7 +315,7 @@ def n_trials(self): def add_data(self, x, y): """ - Adds new data points to the strategy, normalizing the inputs if necessary. + Adds new data points to the strategy, and normalizes the inputs. Args: x (torch.Tensor, np.ndarray): The input data points. Can be a PyTorch tensor or NumPy array.