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 has to do with when inference is started it is performed in the backend. We don't have a simple way to communicate with the backend. A better solution would be to create a process where the backend stuff is processing. When the cancel button is presses, we will kill the entire process, which in effect also should kill the backend processing.
However, as discussed in this issue, creating processes in frozen applications in python is challenging: #20
The text was updated successfully, but these errors were encountered:
Should be able to kill all processes inside the mp.Pool now, as stated here. Will just have to make a class around the logic backend and have the mp.Pool as static variable.
Might be some more issues if/when trying to kill a process during registration, due to ANTs.
This has to do with when inference is started it is performed in the backend. We don't have a simple way to communicate with the backend. A better solution would be to create a process where the backend stuff is processing. When the cancel button is presses, we will kill the entire process, which in effect also should kill the backend processing.
However, as discussed in this issue, creating processes in frozen applications in python is challenging: #20
The text was updated successfully, but these errors were encountered: