view _FullBNT/BNT/learning/mk_schedule.m @ 9:4ea6619cb3f5 tip

removed log files
author matthiasm
date Fri, 11 Apr 2014 15:55:11 +0100
parents b5b38998ef3b
children
line wrap: on
line source
function schedule = mk_schedule(init_temp, final_temp, anneal_rate)

init_temp = 10; final_temp = 1e-2; anneal_rate = 0.8;
schedule = [];
temp=init_temp;
schedule = [schedule temp];
while temp > final_temp
  temp = temp * anneal_rate;
  schedule = [schedule temp];
end