Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
J. Almazan committed Feb 21, 2014
1 parent 4ef3fe5 commit 395aa5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prepare_opts.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
opts.sgdparams.t = 0;
opts.sgdparams.weightPos = 1;
opts.sgdparams.weightNeg = 1;
opts.modelsLog = sprintf('%s/learning.log',opts.folderModels);

% Options embedding
opts.RemoveStopWords = 0;
Expand Down Expand Up @@ -143,6 +142,7 @@
opts.fileAttModels = sprintf('%s/%s_attModels%s%s%s.mat',opts.dataFolder,opts.dataset,opts.tagPHOC,opts.tagFeatures,tagBagging);
opts.fileAttRepres = sprintf('%s/%s_attRepres%s%s%s.mat',opts.dataFolder,opts.dataset,opts.tagPHOC,opts.tagFeatures,tagBagging);
opts.folderModels = sprintf('%s/models%s/',opts.dataFolder,tagBagging);
opts.modelsLog = sprintf('%s/learning.log',opts.folderModels);
if ~exist(opts.folderModels,'dir')
mkdir(opts.folderModels);
end
Expand Down

0 comments on commit 395aa5e

Please sign in to comment.