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
Incomplete time series classification (ITSC) is an important issue in time series analysis since temporal data often has missing values in practical applications.
However, integrating imputation (replacing missing data) and classification within a model often rapidly amplifies the error from imputed values.
Adversarial Joint-learning Recurrent Neural Network (AJ-RNN) is an end-to-end model trained in an adversarial and joint learning manner. It can impute missing values on the fly.
The proposed method uses an adversarial architecture (GAN) to encourage realistic imputation by penalizing unrealistic imputations with an adversarial loss.
Proposed Method:
For ITSC, we get sub-optimal results if imputation of missing values and classification are independent steps.
The authors suggest to use an RNN to impute missing values and classify the time series simultaneously.
In this work authors integrated adversarial training and joint (imputation and classification) learning in recurrent neural networks (RNNs) and called their system Adversarial Joint-learning RNN (AJ-RNN).
AJ-RNN is trained to approximate the value of the next input variable when it is revealed, and to fill it in with its prediction if it is missing. At the same time, AJ-RNN also learns to classify. Hence AJ-RNN can directly perform classification with missing values.