Updated agent loading for single-agent loading of model
This commit is contained in:
parent
0bdcc8ca6f
commit
ef9b9bc664
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ class Player(pygame.sprite.Sprite):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.agent.load_models(
|
self.agent.load_models(
|
||||||
actr_chkpt=f"player_{self.player_id}_actor", crtc_chkpt=f"player_{self.player_id}_critic")
|
actr_chkpt=f"player_actor", crtc_chkpt=f"player_critic")
|
||||||
print("Models loaded ...\n")
|
print("Models loaded ...\n")
|
||||||
|
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
|
|
Loading…
Reference in a new issue