diff --git a/docs/source/tutorials/tutorial15/tutorial.html b/docs/source/tutorials/tutorial15/tutorial.html index 9de416c83..3fadabe83 100644 --- a/docs/source/tutorials/tutorial15/tutorial.html +++ b/docs/source/tutorials/tutorial15/tutorial.html @@ -7747,7 +7747,7 @@

Download Data and create the Probl # 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 @@

Train the Model @@ -7935,56 +7935,56 @@

Train the Model -