Gamestudio Links
Zorro Links
Newest Posts
Trading Journey
by howardR. 04/24/24 20:04
M1 Oversampling
by Petra. 04/24/24 10:34
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Data from CSV not parsed correctly
by EternallyCurious. 04/20/24 21:39
Scripts not found
by juergen_wue. 04/20/24 18:51
zorro 64bit command line support
by 7th_zorro. 04/20/24 10:06
StartWeek not working as it should
by jcl. 04/20/24 08:38
folder management functions
by VoroneTZ. 04/17/24 06:52
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (howardR), 493 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Mega_Rod, EternallyCurious, howardR, 11honza11, ccorrea
19048 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
get optimized parameter values #476239
02/06/19 18:34
02/06/19 18:34
Joined: Nov 2018
Posts: 55
G
gamadeus Offline OP
Junior Member
gamadeus  Offline OP
Junior Member
G

Joined: Nov 2018
Posts: 55
Is there any way to export the results of the parameter optimization (i.e. the data that is saved in the .par files) while the script is running, for example after the last StepCycle has been completed?


I know this can also be done by just reading the .par files after the entire testing is complete, but it would be more convenient to have these exported directly. And also I am just curious on how the optimize function actually works.

Last edited by gamadeus; 02/06/19 18:45.
Re: get optimized parameter values [Re: gamadeus] #478550
11/06/19 13:23
11/06/19 13:23
Joined: Nov 2019
Posts: 12
N
NiklasH Offline
Newbie
NiklasH  Offline
Newbie
N

Joined: Nov 2019
Posts: 12
Did you find an answer to this one?
Does anybody know how to access the optimized parameters from within the objective() function?

Re: get optimized parameter values [Re: gamadeus] #478551
11/06/19 16:29
11/06/19 16:29
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
No, because you need objective() for calculating them.

Re: get optimized parameter values [Re: jcl] #478554
11/07/19 09:54
11/07/19 09:54
Joined: Nov 2019
Posts: 12
N
NiklasH Offline
Newbie
NiklasH  Offline
Newbie
N

Joined: Nov 2019
Posts: 12
The objective function returns the objective value *after* parameter optimizations, no?

I'm doing genetic optimization and I want to get not only the finally selected parameters.
How would I go about logging all parameter combinations which fulfill certain criteria, preferably to a file in CSV format, if possible?

Edit: Would it work, if I did it inside a
Code
 if(is(EXITRUN)) {}
?

Last edited by NiklasH; 11/07/19 10:30.
Re: get optimized parameter values [Re: NiklasH] #478555
11/07/19 12:01
11/07/19 12:01
Joined: Feb 2017
Posts: 1,725
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,725
Chicago
Originally Posted by NiklasH
The objective function returns the objective value *after* parameter optimizations, no?
Not correct. It returns each individual iteration's objective measure. Zorro then evaluates all objective() returns after all objective() calls are complete.

Re: get optimized parameter values [Re: AndrewAMD] #478556
11/07/19 12:21
11/07/19 12:21
Joined: Nov 2019
Posts: 12
N
NiklasH Offline
Newbie
NiklasH  Offline
Newbie
N

Joined: Nov 2019
Posts: 12
and each individiual iteration will contain a set of values used for the optimize-able vars, right?

Perhaps I'm just bad at explaining what I mean.

If i have some code like this in my run() function:

Code
...
  var p1 = optimize(1,1,10,1);
  var p2 = optimize(1,1,10,1);
  var p3 = optimize(1,1,10,1);
...


Any time the objective() function is called, p1, p2 and p3 will contain *some* value that was used in the evaluated iteration (otherwise, how would the objective be evaluated?).
Now my question is, whether I can get (and log) the assigned values of p1, p2 and p3 inside the objective() function, or perhaps there is a better way?

Last edited by NiklasH; 11/07/19 12:37.
Re: get optimized parameter values [Re: gamadeus] #478559
11/08/19 14:24
11/08/19 14:24
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
If you set a variable in function A and want to get it in function B, use global variables.

https://manual.zorro-project.com/aarray.htm


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1