Size of predictions and targets must match.
19 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear sir,
I make a LSTM regression. LSTM will take 50x28 input and predict 1x2 output.
50 input sample with 28 channel will equal to 1 output samples with 2 channel.
My dataset is OK. I want this dataset.
XTrain= 838985x1 cell inside 50x28 double

TTrain=838985x1 cell inside 1x2 double

layers = [
sequenceInputLayer(28)
bilstmLayer(200,'OutputMode','sequence')
dropoutLayer(0.2)
bilstmLayer(200,'OutputMode','sequence')
dropoutLayer(0.2)
fullyConnectedLayer(2)];
net = trainnet(XTrain,TTrain,layers,"mse",options);
How can ı solve this unshape station?
Error using trainnet (line 46)
Size of predictions and targets must match.
Size of predictions:
2(C) × 128(B) × 50(T)
Size of targets:
2(C) × 128(B) × 1(T)
0 Kommentare
Antworten (1)
Chuguang Pan
am 24 Nov. 2025 um 13:52
Verschoben: Matt J
am 24 Nov. 2025 um 15:26
@Bahadir. As indicated by the error message, the size of prediction and the target must be equal. I think you should reduce the T dimension before predicting, you can use bilstmLayer with "last" Output mode to reduce T dimension.
2 Kommentare
Chuguang Pan
am 25 Nov. 2025 um 8:15
@Bahadir. For the one time step prediction problem, you can preprocess the input multivariable time series as
tensor and the output as
tensor, where every observation is the one time step target.
tensor, where every observation is the one time step target.Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!