kentsommer / pytorch-value-iteration-networks

Pytorch implementation of Value Iteration Networks (NIPS 2016 best paper)
BSD 3-Clause "New" or "Revised" License
318 stars 62 forks source link

What is X,S1,S2,label in dataset.py? #10

Closed garboa closed 4 years ago

garboa commented 5 years ago

Hello,I am a fresh learner of RL, so I am confused about how to form the input.What is X,S1,S2,label?

codenie commented 5 years ago

X is the map and the destination, S1 and S2 are the position that start from. label is the right action

QiXuanWang commented 4 years ago

Why two positions: S1 and S2, shouldn't it be one position to start from? @codenie

QiXuanWang commented 4 years ago

Oh. guess it's x,y.

kentsommer commented 4 years ago

Correct it is x,y.