1D Target (Stop Sign)

This module is the setup for a simple vehicle driving in a straight line. The goal is to stop before some target stop sign. The following figures for acceleration and velocity demonstrate how realistic demonstrations contain a significant amount of variation and error:

Try running the algorithm on the setup by running make and make emng (or see snapshots/ for a selection of pre-acquired results).

The most useful/informative outputs will be:

Other outputs include:

We provide the observation model below:

step(action):
    if (action == ACC)
        acc = min(acc+1, acc_max)
    else if (action == DEC)
        acc = max(acc-1, acc_min)
    else if (action == CON)
        if (acc < 0) acc = min(acc+1, 0)
        else acc = max(acc-1, 0)