Kautenja / gym-super-mario-bros

An OpenAI Gym interface to Super Mario Bros. & Super Mario Bros. 2 (Lost Levels) on The NES

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

exception: access violation reading 0x000000000003C208

Powercube7 opened this issue · comments

When running the following script for the AI to predict an action, the error specified happens. This is my code:

episodes = 5
for episode in range (1, episodes + 1):
state = env.reset()
done = False
score = 0
while not done:
env.render()
action = model.predict(state)
state, reward, done, info = env.step(action)
score += reward
print('Episode: {}, Score: {}'.format(episode, score))
env.close()

I use stable baselines 3 to train and evaluate the AI

Without more information I cannot debug this issue. I would imagine that it is due to the model and not the gym-super-mario-bros framework.

@Kautenja I think I have one more detail, but that's all I know. This occured when I force stop anything related to the library (model evaluation, prediction, etc.)