How to build a TDNN with two data sequence inputs

4 ビュー (過去 30 日間)
Yi
Yi 2022 年 11 月 10 日
回答済み: Aditya 2023 年 9 月 1 日
Hello,
I am configuration a TDNN for the communication data. Architecture as below:
There are two data sequences, I and Q, to be fed into the network. I tried timedelaynet. The network, however, seems to accept only one data sequence. Anyone can tell me how to input two parellel data sequence into the timedelaynet? Thanks.
example as below;
net = timedelaynet(1:10,50);
[Xs,Xi,Ai,Ts] = preparets(net,X,T);
net = train(net,Xs,Ts,Xi,Ai);

回答 (1 件)

Aditya
Aditya 2023 年 9 月 1 日
Hello Yi,
To input two parallel data sequences into a timedelaynet, you can concatenate the two sequences and treat them as a single input sequence. Here's an example of how you can modify your code to achieve this:
X = [I; Q];
This modified input sequence can be used with the preparetsfunction to prepare the data for training the timedelaynet.
For more detailed information on the timedelaynet function, you can refer to the documentation provided by MathWorks: https://in.mathworks.com/help/deeplearning/ref/timedelaynet.html
Hope this helps!

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by