Closed SamHSlva closed 5 years ago
I thought you could call certain bash script to kill the python process? Why do you have to do it from C# script? @SamHSlva
Thanks for the comments - closing this issue due to inactivity. Feel free to open a new issue if you're still running into problems.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
I am doing a hard test on the model I have trained. So I am exploring variations on the environment to verify the efficiency of my agent in untrained situations.
The problem is that I am running thousands of simulations and with the memory leak on Linux, I have to keep restarting the program, I wanted to break my simulation in many small pieces, and as one finishes the other automatically starts. I have tried to automate the process this way, but its been failing because the tensorflow process does not end as unity game closes, neither
Application.Quit()
norSystem.Diagnostics.Process.GetCurrentProcess().Kill();
are terminating themlagents-learn
application, only the Unity application.I would love if someone could give me a suggestion to go around this problem.