The parameter window_size specifies a window size, but the value exceeds the
Interesting error message "The parameter window_size specifies a window size, but the value 10 exceeds the example set size. "
- even though the output looks fine.
Operator #1: Read Database to load two columns, one date and one stock price.
Operator #2: I Set Role the date as id.
Operator #3: Windowing: encode_series_by_examples; horizon=1, window size=10, step size=1
As expected, I get these correct output columns, populated with the expected data:
date close-9 close-8 .. close-0
Still the error message bothers me. It's as if the windowing thought there was no ExampleSet input at all (even window size = 1 does not solve it), but still performed the operation correctly.
Any ideas?
- even though the output looks fine.
Operator #1: Read Database to load two columns, one date and one stock price.
Operator #2: I Set Role the date as id.
Operator #3: Windowing: encode_series_by_examples; horizon=1, window size=10, step size=1
As expected, I get these correct output columns, populated with the expected data:
date close-9 close-8 .. close-0
Still the error message bothers me. It's as if the windowing thought there was no ExampleSet input at all (even window size = 1 does not solve it), but still performed the operation correctly.
Any ideas?