-
Notifications
You must be signed in to change notification settings - Fork 63
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
reconstruction error #16
Comments
Hey @q-learning-trader thanks for pointing that out. You're actually right, this doesn't seem right to me either. Would you like opening a PR to fix this? 😃 |
I might try if I have time @JulesBelveze . |
You are totally right @q-learning-trader |
I have tried to make some simple changes in the Dataset and I am now getting the following error:
For instance in the the decoder, the following forward return I do not think it fits the reconstruction:
dim=1 I do not think is good in this case. |
@q-learning-trader I haven't looked at that code for a while so I would need to investigate further. I would be grateful if you can look into that otherwise I will try to spend some on this :) |
Ha! I ran into this issue too. Couldn’t make reconstruction work in the sample config setup. Also tried removing the y values and ran into the size mismatch. Hmmm |
Hey @MatthewWaller, |
Is this still open? It looks to me that the problem is into the definition of y_hist. I think y is defined correctly because it should be the
I think it should be
(Maybe I am missing something) |
Hi, nice project.
Thanks for sharing.
I am looking around and testing.
It seems get_loaders function does not fit run_reconstruction.
In particular the following line:
X_train, X_test, y_train, y_test = self.preprocess_data()
it is not correct for reconstruction. For reconstruction we do not need y values.
The text was updated successfully, but these errors were encountered: