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'm interested in viewing the hyp_impscores of the BPNet outputs, as seen in line 5, row 2 of this document.
First, I'm able to view the standard contribution scores using the dictionary produced via: viz_dict, seq, imp_scores = interval_predict(bpnet, ds, interval, tasks, smooth_obs_n=0, neg_rev=False, incl_pred=True)
E.g., via viz_dict['Nanog Imp profile'], which I understand to represent the absolute amount of the contribution score for task {task=Nanog} at the motif instance position — i.e., these are the "contribution of each base within the input sequence to the entire predicted ChiP nexus profile of the TF {task=Nanog} output by DeepLIFT"
As I understand, these are derived by taking the dot product of hyp_impscores with the given one-hot encoding. Is it true that imp_scores['Nanog/profile/wn'][0] (for this example) stores the hyp_impscores?
The text was updated successfully, but these errors were encountered:
I'm interested in viewing the
hyp_impscores
of the BPNet outputs, as seen in line 5, row 2 of this document.First, I'm able to view the standard contribution scores using the dictionary produced via:
viz_dict, seq, imp_scores = interval_predict(bpnet, ds, interval, tasks, smooth_obs_n=0, neg_rev=False, incl_pred=True)
E.g., via
viz_dict['Nanog Imp profile']
, which I understand to represent the absolute amount of the contribution score for task {task=Nanog} at the motif instance position — i.e., these are the "contribution of each base within the input sequence to the entire predicted ChiP nexus profile of the TF {task=Nanog} output by DeepLIFT"As I understand, these are derived by taking the dot product of
hyp_impscores
with the given one-hot encoding. Is it true thatimp_scores['Nanog/profile/wn'][0]
(for this example) stores thehyp_impscores
?The text was updated successfully, but these errors were encountered: