SimoMaestri
SimoMaestri
Hi, thank you so much for this exhaustive and very clear explanation.
Hi, thank you for your answer. I've got another question about the notebook. When you define the "explain" function you also define the model: `model = ([ddpg.S], ddpg.a)` Is ddpg.a...
Hi, thank you for your answer. I'll share my code because i have some problem and there are some parts that i really don't understand. I've tried to print your...
Hi, i solved the problem in this way: `explainer = shap.DeepExplainer(model.q_net, torch.FloatTensor(state_log).to(device))` I used model = model.q_net that is the network between state and Q-value. Then i convert state_log to...