@@ -81,6 +81,12 @@ def __init__(
8181 Input features, expected to be a 2D tensor of shape (n_samples, n_features).
8282 y: TensorLike
8383 Target values, expected to be a 2D tensor of shape (n_samples, n_tasks).
84+ standardize_x: bool
85+ Whether to standardize the input features with a `StandardizeTransform`
86+ before fitting. Defaults to False.
87+ standardize_y: bool
88+ Whether to standardize the target values with a `StandardizeTransform`
89+ before fitting. Defaults to True.
8490 likelihood_cls: type[MultitaskGaussianLikelihood]
8591 Likelihood class to use for the model. Defaults to
8692 `MultitaskGaussianLikelihood`.
@@ -370,6 +376,12 @@ def __init__(
370376 Input features, expected to be a 2D tensor of shape (n_samples, n_features).
371377 y: TensorLike
372378 Target values, expected to be a 2D tensor of shape (n_samples, n_tasks).
379+ standardize_x: bool
380+ Whether to standardize the input features with a `StandardizeTransform`
381+ before fitting. Defaults to False.
382+ standardize_y: bool
383+ Whether to standardize the target values with a `StandardizeTransform`
384+ before fitting. Defaults to True.
373385 likelihood_cls: type[MultitaskGaussianLikelihood]
374386 Likelihood class to use for the model. Defaults to
375387 `MultitaskGaussianLikelihood`.
@@ -389,9 +401,7 @@ def __init__(
389401 False, it will return the posterior distribution over the modelled function.
390402 Defaults to False.
391403 epochs: int
392- Number of training epochs.
393- activation: type[nn.Module]
394- Activation function to use in the model. Defaults to `nn.ReLU`.
404+ Number of training epochs. Defaults to 50.
395405 lr: float
396406 Learning rate for the optimizer. Defaults to 2e-1.
397407 early_stopping: EarlyStopping | None
@@ -401,7 +411,8 @@ def __init__(
401411 GPU). Defaults to None.
402412 scheduler_cls: type[LRScheduler] | None
403413 Learning rate scheduler class. If None, no scheduler is used. Defaults to
404- scheduler_params: dict
414+ None.
415+ scheduler_params: dict | None
405416 Additional keyword arguments for the learning rate scheduler.
406417 """
407418 # Init device
0 commit comments