Is it possible to divide data from a very long time series into smaller pieces so that an LSTM network can be trained more easily?
4 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I decided to use LSTM neural networks to solve a problem of identification of a nonlinear system.
In particular, the latter is a SISO process and as training data I have available very long time series (more than 400000 samples) both for the input and the output of the process.
I wonder, in this regard, if there is a function in trainingOptions (or any other methodology) that allows you to partition these time series into smaller parts (with fewer samples), in order to facilitate the training process of LSTM.
I thank you in advance for your support.
Marco
0 件のコメント
回答 (1 件)
aditi bagora
2023 年 9 月 25 日
You can utilize the 'MiniBatchSize' parameter in the “trainingOptions” function to define the desired size of mini batches. Batching will partition your data into smaller parts and can be used in training your network.
To know more details, refer to the below link: https://www.mathworks.com/help/deeplearning/ref/trainingoptions.html#bu59f0q_sep_bu59f0q-MiniBatchSize
I hope the provided information helps in resolving your query.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Sequence and Numeric Feature Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!