How to use Pattern Recognition (Inputs and targets have different numbers of samples.)

1 回表示 (過去 30 日間)
Kong
Kong 2020 年 3 月 20 日
回答済み: Sindhu Karri 2020 年 3 月 23 日
Hello.
I have a dataset
x(data) = 90 x 2856
t(target) = 90 x 1
Could you explain how I can solve this error?
clear all
close all
x = readmatrix('final_3000_data.csv');
t = readmatrix('final_3000_nor_target.csv');
net = patternnet(10);
net = train(net,x,t);
view(net)
y = net(x);
perf = perform(net,t,y);
classes = vec2ind(y);

採用された回答

Sindhu Karri
Sindhu Karri 2020 年 3 月 23 日
Hiii,
Refer to below link (focus on 'preparing the data')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePattern Recognition and Classification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by