-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loss_MIT wrong? #32
Comments
Hi there, |
The imputation values for X are from X_tilde_3, hence it is fine. |
Thank you for your reply , I know that the imputation values for X are from X_tilde_3, just as the code shows: combine X_tilde_1 and X_tilde_2
but the equation in paper is L_MIT=MAE(X_c,X,I) |
Yes, but as I said, the code logic here is right. The parts for loss calculation in |
Thank you for your sincerely reply! I will try it later
宁成林
***@***.***
…---Original---
From: "Wenjie ***@***.***>
Date: Fri, Jan 19, 2024 18:00 PM
To: ***@***.***>;
Cc: ***@***.******@***.***>;
Subject: Re: [WenjieDu/SAITS] Loss_MIT wrong? (Issue #32)
Yes, but as I said, the code logic here is right. The parts for loss calculation in L_MIT=MAE(X_c,X,I) and
MIT_loss = self.customized_loss_func(X_tilde_3, inputs["X_ori"], inputs["indicating_mask"]) both determined by indicating_mask, i.e., the term I, and they are the same. You can try to replace X_tilde_3 with X_c, the MIT_loss result will not change.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
My pleasure. If you're working on time series imputation, our recent survey work https://github.com/WenjieDu/Awesome_Imputation may be helpful to you. The benchmark code has been open source, and the preprint paper will be released soon. |
好的!非常感谢!
宁成林
***@***.***
…---Original---
From: "Wenjie ***@***.***>
Date: Fri, Jan 19, 2024 19:01 PM
To: ***@***.***>;
Cc: ***@***.******@***.***>;
Subject: Re: [WenjieDu/SAITS] Loss_MIT wrong? (Issue #32)
My pleasure. If you're working on time series imputation, our recent survey work https://github.com/WenjieDu/Awesome_Imputation may be helpful to you. The benchmark code has been open source, and the preprint paper will be released soon.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
I am closing this issue because the proposed questions have been solved. If you have further concerns, reopening it will be welcome. BTW, you can also join our PyPOTS community to discuss research related to partially-observed time series data. |
I saw that the loss of MIT computaion in core.py was
'MIT_loss = self.customized_loss_func(
X_tilde_3, inputs["X_ori"], inputs["indicating_mask"]
)'
,which computed the MAE between M~3 and X_ori and differed to the paper.
The text was updated successfully, but these errors were encountered: