Skip to content

Commit

Permalink
added confusion plots in plot_data
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHelfer committed Jul 1, 2024
1 parent 3f3b03a commit 022ab76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evaluate_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,15 @@
model = model.to(device)
model.eval()

y_true, y_true_label, y_pred = process_data_loader(
y_true, y_true_label, y_pred, lc_data = process_data_loader(
val_loader_no_aug,
regression,
classification,
device,
model,
combinations=cfg_extra_args["combinations"],
)
y_true_train, y_true_train_label, _ = process_data_loader(
y_true_train, y_true_train_label, _, _ = process_data_loader(
train_loader_no_aug,
regression,
classification,
Expand Down

0 comments on commit 022ab76

Please sign in to comment.