next up previous
Next: EXPERIMENTS Up: LEARNING FACTORIAL CODES BY Previous: LOCAL CONDITIONED VARIANCE MAXIMIZATION

`NEURAL' IMPLEMENTATION

In a realistic application, of course, it is implausible to assume that the errors of all $P_i$ are minimal at all times. After having modified the functions computing the internal representations, the $P_i$ must be trained for some time to assure that they can adapt to the new situation.

Each of the $n$ predictors, the $n$ representational modules, and the potentially available auto-associator can be implemented as a feed-forward back-propagation network (e.g. Werbos, 1974). There are two alternating passes - one for minimizing prediction errors, the other one for maximizing $T$. Here is an off-line version based on successive `epochs' (presentations of the whole ensemble of training patterns):



PASS 1 (minimizing prediction errors):

Repeat for a `sufficient' number of training epochs:

1. For all $p$:

1.1. For all $i$: Compute $y^p_i$.

1.2. For all $i$: Compute $P^p_i$.

2. Change each weight $w$ of each $P_i$ according to

\begin{displaymath}
\triangle w = - \eta_P \frac{\partial E_{P_i}} {\partial w},
\end{displaymath}

where $\eta_P$ is a positive constant learning rate.



PASS 2 (minimizing predictability):

2. For all $p$:

2.1. For all $i$: Compute $y^p_i$.

2.2. For all $i$: Compute $P^p_i$.

2.3. If an auto-associator is involved, compute $z^p$.



$\textstyle \parbox{11cm}{
2. Change each weight $v$\ of each representational ...
...presentational modules) down to the weights of the
representational modules.
}$

The off-line version above is perhaps not as appealing as a more local procedure where computing time is distributed evenly between PASS 2 and PASS 1:

An on-line version. An extreme on-line version does not sweep through the whole training ensemble before changing weights. Instead it processes the same single input pattern $x^p$ (randomly chosen according to the input distribution) in both PASS 1 and PASS 2 and immediately changes the weights of all involved networks simultaneously, according to the contribution of $x^p$ to the respective objective functions.

Simultaneous updating of the representations and the predictors, however, introduces a potential for instabilities. Both the predictors and the representational modules perform gradient descent (or gradient ascent) in changing functions. Given a particular implementation of the basic principle, experiments are needed to find out how much on-line interaction is permittable. With the toy-experiments reported below, on-line learning did not cause major problems.

It should be noted that if $T = V_C = \sum_i E_{P_i}$ (section 5), then with a given input pattern we may compute the gradient of $V_C$ with respect to both the predictor weights and the weights of the representation modules in a single pass. After this we may simply perform gradient descent in the predictor weights and gradient ascent in the remaining weights (it is just a matter of flipping signs). This was actually done in the experiments.

Local maxima. Like all gradient ascent procedures, the method is subject to the problem of local maxima. A standard method for dealing with local maxima is to repeat the above algorithm with different weight initializations (using a fixed number $n_E$ of training epochs for each repetition) until a (near-) factorial code is found. Each repetition corresponds to a local search around the point in weight space defined by the current weight initialization.

Shared hidden units. It should be mentioned that some or all of the representational modules may share hidden units. The same holds for the predictors. Predictors sharing hidden units, however, will have to be updated sequentially: No representational unit may be used to predict its own activity.


next up previous
Next: EXPERIMENTS Up: LEARNING FACTORIAL CODES BY Previous: LOCAL CONDITIONED VARIANCE MAXIMIZATION
Juergen Schmidhuber 2003-02-13


Back to Independent Component Analysis page.