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 developed a RPC service which provide explanation service. Because any explain operation can only be executed within a DeepExplain context, and initialization process takes longer than generating saliency maps. I have to create another process which loads models and create a DeepExplain context, the main process communicate with it through queues. It makes the program a little complex.
Some other libraries do not need explicit execution context.
We can manually release resources.
The text was updated successfully, but these errors were encountered:
with DeepExplain(session=K.get_session()) as de:
I developed a RPC service which provide explanation service. Because any explain operation can only be executed within a DeepExplain context, and initialization process takes longer than generating saliency maps. I have to create another process which loads models and create a DeepExplain context, the main process communicate with it through queues. It makes the program a little complex.
Some other libraries do not need explicit execution context.
We can manually release resources.
The text was updated successfully, but these errors were encountered: