Closed GoogleCodeExporter closed 9 years ago
This is implemented, but will remain an undocumented API for now. I really only
needed it so that I Could do neat stuff with RL-Viz, so I've added it to the
java
codec and the rl_glue server only for now. It will get added to other codecs if
anyone wants it or if it becomes useful more generally.
The methods we ended up adding are:
/**
New Experimental Methods, not part of the public API
**/
const action_t* RL_agent_start(const observation_t* observation);
const action_t* RL_agent_step(double reward, const observation_t* observation);
void RL_agent_end(double reward);
const observation_t* RL_env_start();
const reward_observation_terminal_t* RL_env_step(const action_t* action);
Original comment by brian.ta...@gmail.com
on 3 Dec 2008 at 4:23
Original issue reported on code.google.com by
brian.ta...@gmail.com
on 12 Nov 2008 at 8:59