Size of predictions and targets must match.
19 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
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
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.
tensor, where every observation is the one time step target.Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!