Skip to content
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

Add informer as an imputation model #335

Merged
merged 4 commits into from
Apr 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: data embedding input dim should be n_features;
  • Loading branch information
WenjieDu committed Apr 2, 2024
commit 43a4ecc10b3c129fc3c31b6fe6a926c616220f8f
2 changes: 1 addition & 1 deletion pypots/imputation/informer/modules/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(
self.seq_len = n_steps
self.n_layers = n_layers
self.enc_embedding = DataEmbedding(
n_features * 2,
n_features,
d_model,
dropout=dropout,
)
Expand Down
Loading