RevIN
RevIN copied to clipboard
RevIN: Reversible Instance Normalization For Accurate Time-series Forecasting Against Distribution Shift
Will you release the code for training N-BEATS model with RevIN?
Thank you for such great work. I'm working on time series anomaly detection, and your work has inspired me a lot. But I have a question about the denormalization in...
Thank you for the code. I did a quick check with revin to see if it is causal along the sequence length axis, where by "causal" I mean that only...
Hi, I appreciate your paper and code. What I am confused about is why there is no comparison of rev layer norm (similar to RevBn, RevIN) in Table 10 of...
Hi, I appreciate your paper and code. Could you confirm if you standardized the datasets (applied z-scores) before using RevIN? Thank you, Huy
Question
Please tell me, did I get it right here? ..for some reason, the results even got worse. import torch.nn as nn import torch.optim as optim class MultipleRegression(nn.Module): def __init__(self, num_features):...
Thanks for your work. I read the source code of Informer with RevIN, and I found that the data is normalized by standard normalization, and then sent to the RevIn...
What if the x_in and x_out have different numbers of features? For example, we use multivariable to predict a single variable. They don't have the same number of channels. Thanks