Problem with processing large data set

조회 수: 1 (최근 30일)
Andrei-Ieronim Constantinescu
Andrei-Ieronim Constantinescu 2020년 12월 9일
I want to train a BiLSTM-CNN (Bidirectional Long Short-Term Memory Convolutional Neural Network) with 203457 timeseries. I am trying to store them in a table with one line and 203457 columns, each cell containing an array with 100,000 values, but my server freezes whenever I run my code. I don’t get any error messages so I am not sure what the problem is and how to fix it. Do you have any idea why this happens and how to solve this?
Thank you!

답변 (1개)

Eric Sofen
Eric Sofen 2020년 12월 14일
I'm not sure of the BiLSTM-CNN input requirements, but for starters you're probably better off storing those timeseries as rows in a table rather than variables (columns). You've got some 20 billion total values, so you may be hitting memory limits. You may want to look into using a tall variable for out-of-memory computation.
  댓글 수: 1
Andrei-Ieronim Constantinescu
Andrei-Ieronim Constantinescu 2020년 12월 17일
Thank you very much for the response. Meanwhile, I found a forum suggesting that a fileDatastore is good for processing MAT files and big data due to the fact that it is a type of datastore. I will try both options and update here wich one is better.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by