From 9c673c27c135a2ae3e2c7c01d944e151d53981c4 Mon Sep 17 00:00:00 2001 From: mlerik <baerenjesus@gmail.com> Date: Mon, 8 Jul 2019 15:59:14 +0000 Subject: [PATCH] Update Getting_Started_Training.md --- torch_training/Getting_Started_Training.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/torch_training/Getting_Started_Training.md b/torch_training/Getting_Started_Training.md index 4d8fc83..8fa740d 100644 --- a/torch_training/Getting_Started_Training.md +++ b/torch_training/Getting_Started_Training.md @@ -21,4 +21,6 @@ Here is a small example of a railway network with an agent in the top left corne  -As we move along the \ No newline at end of file +As we move along the allowed transitions we build up a tree where a new node is created at every cell where the agent has different possibilities (Switch) or the target is reached. It is important to note that the tree observation is always build according to the orientation of the agent at a given node. This means that each node always has 4 branches coming from it in the directions *Left, Forward, Right and Backward*. These are illustrated with different colors in the figure below. The tree is build form the example rail above. Nodes where there are no possibilitis are fill with `-inf` and are not all shown here for simplicity. The tree however, always hase the same number of nodes for a given tree depth. + + \ No newline at end of file -- GitLab