Skip to content

Commit

Permalink
ds shape printout
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-vaselli committed May 22, 2024
1 parent de4da1b commit 19958ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/models/new_train_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ def train(
# 1. Load the data
ds = np.load(data_path)
ds = filter_stationary_sequences_dataset(ds)
print("ds shape:", ds.shape)
train_x = ds[:n_train, :7]
train_y = ds[:n_train, 7:]
val_x = ds[n_train : n_train + n_val, :7]
Expand Down

0 comments on commit 19958ed

Please sign in to comment.