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
Hi, great job! I'm a beginner in the field of time-series imputation. May I ask why the "missing_mask" and "X" concat should be used in the input of SAITS? def impute(self, inputs): X, masks = inputs["X"], inputs["missing_mask"] input_X = torch.cat([X, masks], dim=2) if self.input_with_mask else X input_X = self.embedding(input_X)
The text was updated successfully, but these errors were encountered:
Thank you so much for your attention to SAITS! If you find SAITS is helpful to your work, please star⭐️ this repository. Your star is your recognition, which can let others notice SAITS. It matters and is definitely a kind of contribution.
I have received your message and will respond ASAP. Thank you again for your patience! 😃
Hi, great job! I'm a beginner in the field of time-series imputation. May I ask why the "missing_mask" and "X" concat should be used in the input of SAITS?
def impute(self, inputs): X, masks = inputs["X"], inputs["missing_mask"] input_X = torch.cat([X, masks], dim=2) if self.input_with_mask else X input_X = self.embedding(input_X)
The text was updated successfully, but these errors were encountered: