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

Method update_replay_memory

tf2.0/mlp_trader.py:259–260  ·  view source on GitHub ↗
(self, state, action, reward, next_state, done)

Source from the content-addressed store, hash-verified

257
258
259 def update_replay_memory(self, state, action, reward, next_state, done):
260 self.memory.store(state, action, reward, next_state, done)
261
262
263 def act(self, state):

Callers 1

play_one_episodeFunction · 0.45

Calls 1

storeMethod · 0.45

Tested by

no test coverage detected