Commit Inicial

This commit is contained in:
2020-11-20 11:23:40 +01:00
commit 5611e5bc01
2914 changed files with 2625178 additions and 0 deletions

7400
data/tanveer/ringnorm/Dataset.data Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,22 @@
printf('lendo problema %s ...\n', problema);
n_entradas= 20; n_clases= 2; n_fich= 1; fich{1}= 'Dataset.data'; n_patrons(1)= 7400;
n_max= max(n_patrons);
x = zeros(n_fich, n_max, n_entradas); cl= zeros(n_fich, n_max);
n_patrons_total = sum(n_patrons); n_iter=0;
for i_fich=1:n_fich
f=fopen(fich{i_fich}, 'r');
if -1==f
error('erro en fopen abrindo %s\n', fich{i_fich});
end
for i=1:n_patrons(i_fich)
fprintf(2,'%5.1f%%\r', 100*n_iter++/n_patrons_total);
for j = 1:n_entradas
x(i_fich,i,j) = fscanf(f,'%g',1);
end
cl(i_fich,i) = fscanf(f,'%i',1); % lectura da clase
end
fclose(f);
end

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
% Rows Columns
2 2
% Matrix elements
0.0 1.0
1.0 0.0

Binary file not shown.

View File

@@ -0,0 +1,8 @@
n_entradas= 20
n_clases= 2
n_arquivos= 1
fich1= ringnorm_R.dat
n_patrons1= 7400
n_patrons_entrena= 3700
n_patrons_valida= 3700
n_conxuntos= 1

File diff suppressed because it is too large Load Diff