From cf380e80146cdb662f2e96d7b2e6357df1988a4d Mon Sep 17 00:00:00 2001 From: Sebastian Fischer Date: Tue, 23 Jan 2024 12:46:51 +0100 Subject: [PATCH] Update R/PipeOpTaskPreprocTorch.R --- R/PipeOpTaskPreprocTorch.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/PipeOpTaskPreprocTorch.R b/R/PipeOpTaskPreprocTorch.R index e44d5d38..5dba87d7 100644 --- a/R/PipeOpTaskPreprocTorch.R +++ b/R/PipeOpTaskPreprocTorch.R @@ -74,7 +74,7 @@ #' Then, two branches are created `B -> C` and `B -> D`, creating two preprocessing graphs #' `A -> B -> C` and `A -> B -> D`. When loading the data, we want to run the preprocessing only once, i.e. we don't #' want to run the `A -> B` part twice. For this reason, [`task_dataset()`] will try to merge graphs and cache -#' results from graphs. +#' results from graphs. However, only graphs using the same dataset can currently be merged. #' #' Also, the shapes created during `$train()` and `$predict()` might differ. #' To avoid the creation of graphs where the predict shapes are incompatible with the train shapes,