HOME

TheInfoList



OR:

Constructing skill trees (CST) is a hierarchical
reinforcement learning Reinforcement learning (RL) is an area of machine learning concerned with how intelligent agents ought to take actions in an environment in order to maximize the notion of cumulative reward. Reinforcement learning is one of three basic machine ...
algorithm which can build skill trees from a set of sample solution trajectories obtained from demonstration. CST uses an incremental MAP (
maximum a posteriori In Bayesian statistics, a maximum a posteriori probability (MAP) estimate is an estimate of an unknown quantity, that equals the mode of the posterior distribution. The MAP can be used to obtain a point estimate of an unobserved quantity on the ...
) change point detection algorithm to segment each demonstration trajectory into skills and integrate the results into a skill tree. CST was introduced by
George Konidaris George may refer to: People * George (given name) * George (surname) * George (singer), American-Canadian singer George Nozuka, known by the mononym George * George Washington, First President of the United States * George W. Bush, 43rd President ...
,
Scott Kuindersma Scott may refer to: Places Canada * Scott, Quebec, municipality in the Nouvelle-Beauce regional municipality in Quebec * Scott, Saskatchewan, a town in the Rural Municipality of Tramping Lake No. 380 * Rural Municipality of Scott No. 98, Saskat ...
,
Andrew Barto Andrew G. Barto (born 1948) is an American computer scientist, currently Professor Emeritus of computer science at University of Massachusetts Amherst. Barto is best known for his foundational contributions to the field of modern computational ...
and
Roderic Grupen Rod Grupen is a professor of Computer science and director of the Laboratory for Perceptual Robotics at the University of Massachusetts Amherst, Amherst. Grupen's research integrates signal processing, control, dynamical systems, learning, and ...
in 2010.


Algorithm

CST consists of mainly three parts;change point detection, alignment and merging. The main focus of CST is online change-point detection. The change-point detection algorithm is used to segment data into skills and uses the sum of discounted reward R_t as the target regression variable. Each skill is assigned an appropriate abstraction. A
particle filter Particle filters, or sequential Monte Carlo methods, are a set of Monte Carlo algorithms used to solve filtering problems arising in signal processing and Bayesian statistical inference. The filtering problem consists of estimating the int ...
is used to control the computational complexity of CST. The change point detection algorithm is implemented as follows. The data for times t\in T and models with prior p(q\in Q) are given. The algorithm is assumed to be able to fit a segment from time j+1 to using model with the fit probability P(j,t,q)^_. A linear regression model with Gaussian noise is used to compute P(j,t,q). The Gaussian noise prior has mean zero, and variance which follows \mathrm\left(\frac, \frac\right). The prior for each weight follows \mathrm(0, \sigma^ \delta) . The fit probability P(j,t,q) is computed by the following equation. : P(j,t,q)=\frac\left, (A+D)^\^\frac\frac Then, CST compute the probability of the changepoint at time with model , P_t(j,q) and P^\text_j using a
Viterbi algorithm The Viterbi algorithm is a dynamic programming algorithm for obtaining the maximum a posteriori probability estimate of the most likely sequence of hidden states—called the Viterbi path—that results in a sequence of observed events, especially ...
. : P_t(j,q)=(1-G(t-j-1))P(j,t,q)p(q)P^\text_j : P^\text_=\max_\frac, \forall j The descriptions of the parameters and variables are as follows; : A=\sum^t_\Phi(x_i)\Phi(x_i)^T :: \Phi(x_i) : a vector of m basis functions evaluated at state x_i :: y=(\sum^t_R^2_)-b^T(A+D)^b :: b=\sum^t_R_i\Phi(x_i) :: R_i=\sum^T_\gamma^r_ :: : Gamma function :: n=t-j :: : The number of basis functions q has. :: : an m by m matrix with \delta^ on the diagonal and zeros elsewhere The skill length is assumed to follow a Geometric distribution with parameter : g^_(l)=(1-p)^p : G^_(l)=(1-(1-p)^l) : p^_=\frac : : Expected skill length Using the method above, CST can segment data into a skill chain. The time complexity of the change point detection is O(NL) and storage size is O(Nc), where is the number of particles, is the time of computing P(j,t,q), and there are O(c) change points. Next step is alignment. CST needs to align the component skills because the change-point does not occur in the exactly same places. Thus, when segmenting second trajectory after segmenting the first trajectory, it has a bias on the location of change point in the second trajectory. This bias follows a mixture of gaussians. The last step is merging. CST merges skill chains into a skill tree. CST merges a pair of trajectory segments by allocating the same skill. All trajectories have the same goal and it merges two chains by starting at their final segments. If two segments are statistically similar, it merges them. This procedure is repeated until it fails to merge a pair of skill segments. P(j,t,q) are used to determine whether a pair of trajectories are modeled better as one skill or as two different skills.


Pseudocode

The following
pseudocode In computer science, pseudocode is a plain language description of the steps in an algorithm or another system. Pseudocode often uses structural conventions of a normal programming language, but is intended for human reading rather than machine re ...
describes the change point detection algorithm: particles := []; Process each incoming data point for t = 1:T do //Compute fit probabilities for all particles for p ∈ particles do p_tjq := (1 − G(t − p.pos − 1)) × p.fit_prob × model_prior(p.model) × p.prev_MAP p.MAP := p_tjq × g(t−p.pos) / (1 − G(t − p.pos − 1)) end ''// Filter if necessary'' if the number of particles ≥ N then particles := particle_filter(p.MAP, M) end ''// Determine the Viterbi path'' for t = 1 do max_path := [] max_MAP := 1/, Q, else max_particle := p.MAP max_path := max_particle.path ∪ max_particle max_MAP := max_particle.MAP end ''// Create new particles for a changepoint at time t'' for q ∈ Q do new_p := create_particle(model=q, pos=t, prev_MAP=max_MAP, path=max_path) p := p ∪ new_p end ''// Update all particles'' for p ∈ P do particles := update_particle(current_state, current_reward, p) end end ''// Return the most likely path to the final point'' return max_path function update_particle(current_state, current_reward, particle) is p := particle r_t := current_reward ''// Initialization'' if t = 0 then p.A := zero matrix(p.m, p.m) p.b := zero vector(p.m) p.z := zero vector(p.m) p.sum r := 0 p.tr1 := 0 p.tr2 := 0 end if ''// Compute the basis function vector for the current state'' Φ := p.Φ (current state) ''// Update sufficient statistics'' p.A := p.A + ΦΦ p.z := p.z + Φ p.b := p.b + r p.z p.tr1 := 1 + p.tr1 p.sum r := sum p.r + r p.tr1 + 2r p.tr2 p.tr2 := p.tr2 + r p.tr1 p.fit_prob := compute_fit_prob(p, v, u, delta, )


Assumptions

CTS assume that the demonstrated skills form a tree, the domain reward function is known and the best model for merging a pair of skills is the model selected for representing both individually.


Advantages

CST is much faster learning algorithm than
skill chaining Skill chaining is a skill discovery method in continuous reinforcement learning Reinforcement learning (RL) is an area of machine learning concerned with how intelligent agents ought to take actions in an environment in order to maximize the not ...
. CST can be applied to learning higher dimensional policies. Even unsuccessful episode can improve skills. Skills acquired using agent-centric features can be used for other problems.


Uses

CST has been used to acquire skills from human demonstration in the
PinBall Pinball games are a family of games in which a ball is propelled into a specially designed table where it bounces off various obstacles, scoring points either en route or when it comes to rest. Historically the board was studded with nails call ...
domain. It has been also used to acquire skills from human demonstration on a mobile manipulator.


See also

* Prefrontal cortex basal ganglia working memory *
State–action–reward–state–action State–action–reward–state–action (SARSA) is an algorithm for learning a Markov decision process policy, used in the reinforcement learning area of machine learning. It was proposed by Rummery and Niranjan in a technical note with the nam ...
*
Sammon Mapping Sammon mapping or Sammon projection is an algorithm that maps a high-dimensional space to a space of lower dimensionality (see multidimensional scaling) by trying to preserve the structure of inter-point distances in high-dimensional space in the ...


References

* * *{{Cite conference, last = Fearnhead , first = Paul , author-link = Paul Fearnhead , author2=Zhen Liu, title= On-line Inference for Multiple Change Points , book-title = Journal of the Royal Statistical Society , year= 2007 Machine learning algorithms