Skip to content

Commit

Permalink
fix input (#13)
Browse files Browse the repository at this point in the history
Signed-off-by: Kleynhans, Bernard <[email protected]>
  • Loading branch information
bkleyn authored Jul 5, 2022
1 parent 95a6f3f commit d22227d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
CHANGELOG
=========

-------------------------------------------------------------------------------
July, 5, 2022 1.0.2
-------------------------------------------------------------------------------

Minor:
- Fixed bug with arguments not being passed correctly to load_response_data.

-------------------------------------------------------------------------------
May, 12, 2022 1.0.1
-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion mab2rec/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

__author__ = "FMR LLC"
__email__ = "[email protected]"
__version__ = "1.0.1"
__version__ = "1.0.2"
__copyright__ = "Copyright (C), FMR LLC"
2 changes: 1 addition & 1 deletion mab2rec/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def _bench(recommenders: Dict[str, BanditRecommender],
user_id_col=user_id_col,
item_id_col=item_id_col,
response_col=response_col)
test_data_df = load_response_data(test_data)
test_data_df = load_response_data(test_data, user_id_col, item_id_col, response_col)

recommendations = dict()
rec_metrics = dict()
Expand Down

0 comments on commit d22227d

Please sign in to comment.