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
There seems to be an error when computing the baselines for the state and mimic experiments: the model is not set in eval mode, which affects the results (probably due to the 0.5 dropout). For instance, on the state experiment using deep_lift, AUP improves from around 0.57 to around 0.94, and AUR from 0.17 to 0.35.
The line self.base_model.eval() should be added in the file fit.TSX.explainers for all the baselines. For instance:
Hi,
There seems to be an error when computing the baselines for the state and mimic experiments: the model is not set in
eval
mode, which affects the results (probably due to the 0.5 dropout). For instance, on the state experiment usingdeep_lift
, AUP improves from around 0.57 to around 0.94, and AUR from 0.17 to 0.35.The line
self.base_model.eval()
should be added in the filefit.TSX.explainers
for all the baselines. For instance:The text was updated successfully, but these errors were encountered: