Skip to content

Commit

Permalink
Remove examples that were redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrennd committed Nov 21, 2015
1 parent ad60f8e commit c5c1d8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion matlab/batchJura1.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

for q =1:4
for k = 1:10,
data = multigpLoadData([dataSetName '_' file{q}]);
data = mapLoadData([dataSetName '_' file{q}]);
data.nin = 1; % Number of latent functions
missingData = cell(data.nout,1);
[total_t(k,q), maerror(k,q)] = batch_demJura(options, data, ntrainX, ntrainX2, approx, missingData, iters);
Expand Down
2 changes: 1 addition & 1 deletion matlab/batchJura3.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
for r=1:length(ntrainX2),
for q =1:4,
for k = 1:10,
data = multigpLoadData([dataSetName '_' file{q}]);
data = mapLoadData([dataSetName '_' file{q}]);
data.nin = 1; % Number of latent functions
missingData = cell(data.nout,1);
[total_t(k,q,r), maerror(k,q,r)] = batch_demJura(options, data, ntrainX, ntrainX2(r), approx, missingData, iters);
Expand Down
2 changes: 1 addition & 1 deletion matlab/batchJura4.m
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
fprintf('Experiment: %s Cross-Validation: %f\n',file{q},k);
rand('seed',(q+k+2)*10^6);
randn('seed',(q+k+2)*10^6);
data = multigpLoadData([dataSetName '_' file{q}]);
data = mapLoadData([dataSetName '_' file{q}]);
data.nin = 1; % Number of latent functions
data.nout = 1;
data.Xtrain = data.Xtrain(1);
Expand Down

0 comments on commit c5c1d8e

Please sign in to comment.