Add neccessary parameters to plot method.

ml_pipeline
Primoz 2023-02-06 11:19:04 +01:00
parent afeb7b4872
commit ef78f179cd
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ xs, y_recall, y_fscore, recall_std, fscore_std = sort_tuples_to_lists(sensor_gro
# %% [markdown]
# ### Visualize sensors groups F1 and recall scores
print(sensor_groups_importance_scores)
plot_sequential_progress_of_feature_addition_scores(xs, y_recall, y_fscore, recall_std, fscore_std,
plot_sequential_progress_of_feature_addition_scores(xs, y_recall, y_fscore, recall_std, fscore_std, recall_std, fscore_std,
title="Sequential addition of sensors and its F1, and recall scores")
# %%