Skip to content

Commit

Permalink
version 1.5.10 stable
Browse files Browse the repository at this point in the history
Signed-off-by: Emily Strong <[email protected]>
  • Loading branch information
Emily Strong committed Aug 13, 2019
1 parent e5d4bb6 commit 9ee088d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
MABWiser CHANGELOG
=====================

-------------------------------------------------------------------------------
August, 12, 2019 1.5.10
-------------------------------------------------------------------------------
minor:
- Bug fix for offline expectation tracking in simulator

-------------------------------------------------------------------------------
July, 1, 2019 1.5.9
-------------------------------------------------------------------------------
Expand Down
Binary file added dist/mabwiser-1.5.10-py3-none-any.whl
Binary file not shown.
Binary file removed dist/mabwiser-1.5.9-py3-none-any.whl
Binary file not shown.
2 changes: 1 addition & 1 deletion mabwiser/mab.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
:Author: FMR LLC
:Email: [email protected]
:Version: 1.5.9 of July 1, 2019
:Version: 1.5.10 of August 12, 2019
This module defines the public interface of the **MABWiser Library** providing access to the following modules:
Expand Down
4 changes: 2 additions & 2 deletions mabwiser/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""
:Author: FMR LLC
:Email: [email protected]
:Version: 1.5.9 of July 1, 2019
:Version: 1.5.10 of August 12, 2019
This module provides a simulation utility for comparing algorithms and hyper-parameter tuning.
"""
Expand Down Expand Up @@ -913,7 +913,7 @@ def _offline_test_bandits(self, test_decisions, test_rewards, test_contexts):

if not isinstance(expectations, list):
expectations = [expectations]
self.bandit_to_expectations[name] = expectations
self.bandit_to_expectations[name] = self.bandit_to_expectations[name] + expectations

else:
predictions = [mab.predict() for _ in range(len(chunk_decision))]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name="mabwiser",
description="MABWiser: Parallelizable Contextual Multi-Armed Bandits Library",
long_description=long_description,
version="1.5.9",
version="1.5.10",
author="FMR LLC",
url="https://github.com/fmr-llc/mabwiser",
packages=setuptools.find_packages(),
Expand Down

0 comments on commit 9ee088d

Please sign in to comment.