You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error is annoying because it only happens periodically. I'm using the Shaping.java file in conjunction with the downloaded version 1.0.3 binary for Windows. I only noticed this error after doing this, but because it happens periodically, it may have been an issue before. The CFG and WAD are for the health_gathering task. I receive:
Exception in thread "main" vizdoom.ViZDoomUnexpectedExitException: Controlled ViZDoom instance exited unexpectedly.
at vizdoom.DoomGame.makeAction(Native Method)
at vizdoom.examples.Shaping.main(Shaping.java:72)
The specific line causing the problems is
double r = game.makeAction(actions.get(ran.nextInt(3)));
Even if I change the code to the following,
double r = game.makeAction(actions.get(0));
I sometimes get the error. The code crashes roughly 1 in 5 times, but there is a lot of variation.
Interestingly, when the code crashes, it is ALWAYS on the first action. The error is not occurring at some point in the middle of evaluation, but always at the very start of the very first episode.
The text was updated successfully, but these errors were encountered:
This error is annoying because it only happens periodically. I'm using the Shaping.java file in conjunction with the downloaded version 1.0.3 binary for Windows. I only noticed this error after doing this, but because it happens periodically, it may have been an issue before. The CFG and WAD are for the health_gathering task. I receive:
Exception in thread "main" vizdoom.ViZDoomUnexpectedExitException: Controlled ViZDoom instance exited unexpectedly.
at vizdoom.DoomGame.makeAction(Native Method)
at vizdoom.examples.Shaping.main(Shaping.java:72)
The specific line causing the problems is
double r = game.makeAction(actions.get(ran.nextInt(3)));
Even if I change the code to the following,
double r = game.makeAction(actions.get(0));
I sometimes get the error. The code crashes roughly 1 in 5 times, but there is a lot of variation.
Interestingly, when the code crashes, it is ALWAYS on the first action. The error is not occurring at some point in the middle of evaluation, but always at the very start of the very first episode.
The text was updated successfully, but these errors were encountered: