mirror of
https://github.com/Doctorado-ML/Stree_datasets.git
synced 2025-08-18 00:46:03 +00:00
Commit Inicial
This commit is contained in:
7400
data/tanveer/twonorm/Dataset.data
Executable file
7400
data/tanveer/twonorm/Dataset.data
Executable file
File diff suppressed because it is too large
Load Diff
2
data/tanveer/twonorm/conxuntos.dat
Executable file
2
data/tanveer/twonorm/conxuntos.dat
Executable file
File diff suppressed because one or more lines are too long
8
data/tanveer/twonorm/conxuntos_kfold.dat
Executable file
8
data/tanveer/twonorm/conxuntos_kfold.dat
Executable file
File diff suppressed because one or more lines are too long
22
data/tanveer/twonorm/le_datos.m
Executable file
22
data/tanveer/twonorm/le_datos.m
Executable 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
|
7423
data/tanveer/twonorm/twonorm.arff
Executable file
7423
data/tanveer/twonorm/twonorm.arff
Executable file
File diff suppressed because it is too large
Load Diff
5
data/tanveer/twonorm/twonorm.cost
Executable file
5
data/tanveer/twonorm/twonorm.cost
Executable file
@@ -0,0 +1,5 @@
|
||||
% Rows Columns
|
||||
2 2
|
||||
% Matrix elements
|
||||
0.0 1.0
|
||||
1.0 0.0
|
BIN
data/tanveer/twonorm/twonorm.tar.gz
Executable file
BIN
data/tanveer/twonorm/twonorm.tar.gz
Executable file
Binary file not shown.
8
data/tanveer/twonorm/twonorm.txt
Executable file
8
data/tanveer/twonorm/twonorm.txt
Executable file
@@ -0,0 +1,8 @@
|
||||
n_entradas= 20
|
||||
n_clases= 2
|
||||
n_arquivos= 1
|
||||
fich1= twonorm_R.dat
|
||||
n_patrons1= 7400
|
||||
n_patrons_entrena= 3700
|
||||
n_patrons_valida= 3700
|
||||
n_conxuntos= 1
|
7401
data/tanveer/twonorm/twonorm_R.dat
Executable file
7401
data/tanveer/twonorm/twonorm_R.dat
Executable file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user