Azzera filtri
Azzera filtri

Hello everyone! I have problem at line 8 and it states Wrong input format at line 1. Hope you could help me thank you! Godbless

1 visualizzazione (ultimi 30 giorni)
Here is my code:
SPECTF = csvread('ThesisDataW1v3.csv');
labels = SPECTF(:,1);
features = SPECTF(:,2:end);
features_sparse = sparse(features);
libsvmwrite('ThesisDataW1v3SPARSE.csv', labels, features_sparse);
clear all;clc
[label, features] = libsvmread('ThesisDataW1v3.csv');
[N,D] = size(features);
labelList = unique(label(:));
NClass = length(labelList);
And attach also is my data that I want to train(Numbers 1 and 3 there specefies my two labels):
  1 Commento
Rik
Rik il 26 Nov 2019
Modificato: Rik il 26 Nov 2019
I would also argue against the use of clear all, if you want to use that at all you should use clearvars.

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 26 Nov 2019
You use libsvmwrite() to carefully write out data with proper labels and features, but then you use libsvmread() to read in the original data rather than the label + feature data that you just wrote out.

Categorie

Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by