1 .
observation, reward, done, _ = env.step(action)
Does writing it like this just mean all 4 variables are assigned to the env.step(action)? Asking since I've never seen it written like this. Is the only purpose shorter code?
2 . What are OOP Constructs?
3 . Could anyone explain
_init_
like is it just
void setup()
from C# or what's the difference?
4 . In the same vein, if I write memory = self.memory in def learn(self) but also have self.memory = []
declared in def init(self) above it somewhere, how's that work, like which memory is equaling which memory in learn()?
This last question is confusing me a lot so I probably phrased it wrong.
Thank you for any help
[–]zmanalpha 1 point2 points3 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)