Skip to content

Commit

Permalink
🐛 fix minor bug (wrongly assigned feat)
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry committed Jul 9, 2024
1 parent 1c72316 commit 58f08e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/move/data/perturbations.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ def perturb_continuous_data_extended(
perturbations_list.append(perturbed_con[:, start_idx + i].numpy())

perturbed_dataloader = _build_dataloader(
con_data=baseline_dataset.cat_all,
cat_data=perturbed_con,
cat_data=baseline_dataset.cat_all,
con_data=perturbed_con,
cat_shapes=baseline_dataset.cat_shapes,
con_shapes=baseline_dataset.con_shapes,
batch_size=baseline_dataloader.batch_size,
Expand Down

0 comments on commit 58f08e4

Please sign in to comment.