Size of predictions and targets must match.

19 visualizzazioni (ultimi 30 giorni)
Bahadir
Bahadir il 24 Nov 2025 alle 12:32
Commentato: Chuguang Pan il 25 Nov 2025 alle 8:15
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)

Risposte (1)

Chuguang Pan
Chuguang Pan circa 23 ore fa
Spostato: Matt J circa 22 ore fa
@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 Commenti
Bahadir
Bahadir circa 6 ore fa
Dear @Matt J
ı want that 50 sampling size of prediction will equal to 1 sampling size of target.
LSTM will take 50 sampling point from sensors, after that LSTM will predict 1 sampling point for controller.
is it possible?
Chuguang Pan
Chuguang Pan circa 5 ore fa
@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.

Accedi per commentare.

Prodotti


Release

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by