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
I'm currently training an agent using the simulink_gym wrapper with a custom Simulink model. During the training process, at the end of each episode, I receive the following messages:
INFO: Something went wrong while closing socket (('127.0.0.1', 55322), 42312)
INFO: Something went wrong while closing socket (('127.0.0.1', 55320), 42313)
I also noticed the following comment in the close function of the CommSocket class:
This catches an error appearing after some time in the training
process. It seems that the socket used to send data to the
Simulink model is closing before its close() method is called.
The reasons have to be investigated (#TBD).
The training continues despite these messages, but I'm concerned about whether this might negatively impact the training process.
Does this comment indicate that the error I'm encountering is related to the simulink_gym wrapper code?
Should I be concerned about how these socket errors might affect the training performance of my agent?
Do you have any suggestions on how I can solve it?
Thank you in advance for your assistance.
The text was updated successfully, but these errors were encountered:
Hello,
I'm currently training an agent using the simulink_gym wrapper with a custom Simulink model. During the training process, at the end of each episode, I receive the following messages:
INFO: Something went wrong while closing socket (('127.0.0.1', 55322), 42312)
INFO: Something went wrong while closing socket (('127.0.0.1', 55320), 42313)
I also noticed the following comment in the close function of the CommSocket class:
This catches an error appearing after some time in the training
process. It seems that the socket used to send data to the
Simulink model is closing before its close() method is called.
The reasons have to be investigated (#TBD).
The training continues despite these messages, but I'm concerned about whether this might negatively impact the training process.
Thank you in advance for your assistance.
The text was updated successfully, but these errors were encountered: