MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / update_replay_memory

Method update_replay_memory

tf2.0/rl_trader.py:271–272  ·  view source on GitHub ↗
(self, state, action, reward, next_state, done)

Source from the content-addressed store, hash-verified

269
270
271 def update_replay_memory(self, state, action, reward, next_state, done):
272 self.memory.store(state, action, reward, next_state, done)
273
274
275 def act(self, state):

Callers 1

play_one_episodeFunction · 0.45

Calls 1

storeMethod · 0.45

Tested by

no test coverage detected