diff --git a/docs/source/tutorials/tutorial15/tutorial.html b/docs/source/tutorials/tutorial15/tutorial.html index 9de416c..3fadabe 100644 --- a/docs/source/tutorials/tutorial15/tutorial.html +++ b/docs/source/tutorials/tutorial15/tutorial.html @@ -7747,7 +7747,7 @@ a.anchor-link { # save the dataset input_ = [data for data in dataset] -target_ = torch.stack([data.y for data in dataset]) +target_ = torch.cat([data.y for data in dataset]) # normalize the target mean = target_.mean(dim=0, keepdim=True) @@ -7908,7 +7908,7 @@ Using a pre-processed version of the dataset. Please install 'rdkit' to alternat
-
You are using the plain ModelCheckpoint callback. Consider using LitModelCheckpoint which with seamless uploading to Model registry.
+
πŸ’‘ Tip: For seamless cloud uploads and versioning, try installing [litmodels](https://pypi.org/project/litmodels/) to enable LitModelCheckpoint, which syncs automatically with the Lightning model registry.
 
@@ -7935,56 +7935,56 @@ Using a pre-processed version of the dataset. Please install 'rdkit' to alternat
-
+
-