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 read your paper on Arxiv and got interested in the inverse propensity score loss that you implemented for debiasing the competing events. However, I still have some questions about this and hope you can help me with them.
I can see from the paper that IPS-weighting, , is trained to estimate the true distribution of the competing events. Based on your equation 20, , this IPS weighting is seemed to be obtained from scratch using a different model, not a downstream model after the latent representation .
However, I didn't find this implementation in this repo. Can you let me know in which part did you implement this IPS loss? Sorry if the questions are naive or due to my carelessness. I'm looking forward to hearing from you.
Best,
Shiang
The text was updated successfully, but these errors were encountered:
Hi there, this weight can be obtained by an additional logistic regression model. The input x can be raw features of patients. So no need of using learned representations. It has been proved that too precise inverse propensity weight can induce high variance (https://arxiv.org/pdf/1602.05352.pdf), so we should not use a too strong model for estimating IPS.
The current repo does not include it and the multi-task learning part. I will update the implementation later. Thanks for your attention!
Hi Zifeng,
I read your paper on Arxiv and got interested in the inverse propensity score loss that you implemented for debiasing the competing events. However, I still have some questions about this and hope you can help me with them.
I can see from the paper that IPS-weighting, , is trained to estimate the true distribution of the competing events. Based on your equation 20, , this IPS weighting is seemed to be obtained from scratch using a different model, not a downstream model after the latent representation .
However, I didn't find this implementation in this repo. Can you let me know in which part did you implement this IPS loss? Sorry if the questions are naive or due to my carelessness. I'm looking forward to hearing from you.
Best,
Shiang
The text was updated successfully, but these errors were encountered: