Skip to content

Commit

Permalink
fix bug with dataset.seq_data
Browse files Browse the repository at this point in the history
  • Loading branch information
elineii committed Feb 19, 2024
1 parent dcbdb15 commit 907439d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsururu/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,9 @@ def __init__(
self.id_column = columns_and_features_params["id"]["column"][0]
self.target_column = columns_and_features_params["target"]["column"][0]
self.date_column = columns_and_features_params["date"]["column"][0]
self.seq_data = data.sort_values(["id", "date"])
self.delta = delta
self.print_freq_period_info()
self.seq_data = data.sort_values(["id", "date"])

def make_padded_test(
self,
Expand Down

0 comments on commit 907439d

Please sign in to comment.