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

Understanding the hyperparameters? #6

Open
IanQS opened this issue Mar 29, 2022 · 0 comments
Open

Understanding the hyperparameters? #6

IanQS opened this issue Mar 29, 2022 · 0 comments

Comments

@IanQS
Copy link

IanQS commented Mar 29, 2022

Hey there!

Thanks for the library. I was wondering if I could get some insight into what these hyperparameters "are"? I've downloaded the dataset and played around with it setting breakpoints, but the names are confusing me.

        self.input_time_window = 4
        self.output_time_horizon = 1
        self.temporal_stride = 1
        self.temporal_frames = 2
        self.time_steps = (
            self.input_time_window - self.temporal_frames + 1
        ) // self.temporal_stride

input_time_window

I'm not sure what this is....

output_time_horizon

I'm guessing that output_time_horizon is the length of the prediction? E.g if output_time_horizon == 1, output a scalar, if output_time_horizon == 2 output a vector of length 2?

temporal stride

Given some input timeseries of [1,2,3,4,5,6, 7] with stride 2 and size 3

T1 = [1,2,3]
T2 = [3,4,5]

?

temporal_frames

Is this the window size as mentioned above?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant