-
-
Notifications
You must be signed in to change notification settings - Fork 540
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
Loopback window size #144
Comments
@lukaszkn I started poking around, and that's a great question. I haven't been able to find a specific |
@lukaszkn I think you are correct: Check out the simpler code in this project: https://github.com/AminHP/gym-anytrading
So, if the Update: in
Given the various exceptions I've seen when I try to load models, which have been train with various My guess is the boundaries become the model's expected observation dimensions/shape, |
Is there loopback window specified here?
Does it mean it's just 1 past value considered?
Thanks
self.n_features = 6 + len(self.data_provider.columns)
self.obs_shape = (1, self.n_features)
self.observation_space = spaces.Box(low=0, high=1, shape=self.obs_shape, dtype=np.float16)
The text was updated successfully, but these errors were encountered: