File: test_cmaes.lua

package info (click to toggle)
lua-torch-optim 0~20171127-ga5ceed7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 548 kB
  • sloc: makefile: 8
file content (23 lines) | stat: -rw-r--r-- 426 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'torch'
require 'optim'

require 'rosenbrock'
require 'l2'

-- 10-D rosenbrock
x = torch.Tensor(10):fill(0)
config = {maxEval=10000, sigma=0.5, verb_disp=0}

-- will take some time
x,fx,i=optim.cmaes(rosenbrock,x,config)


print('Rosenbrock test')
print()
-- approx 6500 function evals expected
print('Number of function evals = ',i)
print('x=');print(x)
print('fx=')
for i=1,#fx do print(i,fx[i]); end
print()
print()