필터 지우기
필터 지우기

how to train RNN ?

조회 수: 6 (최근 30일)
rusul a
rusul a 2021년 1월 4일
hi i have a timit dataset and i need to train a recurrent neural network
the lines below of a code read only two waves i need a method to read the whole dataset in the same idea
[train1, fs]=audioread('female_train.wav');
[train2, fs]=audioread('male_train.wav');
maxLength=max([length(train1), length(train2)]);
train1(end+1:maxLength)=eps;
train2(end+1:maxLength)=eps;
train1=train1./sqrt(sum(train1.^2));
train2=train2./sqrt(sum(train2.^2));

답변 (0개)

카테고리

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