Skip to content

Commit

Permalink
Fix reward of SimpleMultiObsEnv to always be float (#1676)
Browse files Browse the repository at this point in the history
* Fix reward of SimpleMultiObsEnv to always be float

Previously the reward was sometimes returned as an int.

* changelog

* Update changelog.rst

* Update version.txt

* Fix type annotation

* Fix import

---------

Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com>
Co-authored-by: Antonin Raffin <antonin.raffin@ensta.org>
  • Loading branch information
3 people committed Sep 16, 2023
1 parent 9971276 commit 1cd6ae4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Changelog
==========

Release 2.2.0a2 (WIP)
Release 2.2.0a3 (WIP)
--------------------------

Breaking Changes:
Expand Down Expand Up @@ -32,6 +32,7 @@ Bug Fixes:
- Calls ``callback.update_locals()`` before ``callback.on_rollout_end()`` in OnPolicyAlgorithm (@PatrickHelm)
- Fixed replay buffer device after loading in OffPolicyAlgorithm (@PatrickHelm)
- Fixed ``render_mode`` which was not properly loaded when using ``VecNormalize.load()``
- Fixed success reward dtype in ``SimpleMultiObsEnv`` (@NixGD)


Deprecations:
Expand Down
2 changes: 1 addition & 1 deletion stable_baselines3/common/envs/multi_input_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def step(self, action: Union[int, np.ndarray]) -> GymStepReturn:
self.state -= self.num_col

got_to_end = self.state == self.max_state
reward = 1 if got_to_end else reward
reward = 1.0 if got_to_end else reward
truncated = self.count > self.max_count
terminated = got_to_end

Expand Down
4 changes: 2 additions & 2 deletions stable_baselines3/common/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
from io import TextIOBase
from typing import Any, Dict, List, Mapping, Optional, Sequence, TextIO, Tuple, Union

import matplotlib.figure
import numpy as np
import pandas
import torch as th
from matplotlib import pyplot as plt

try:
from torch.utils.tensorboard import SummaryWriter
Expand Down Expand Up @@ -52,7 +52,7 @@ class Figure:
:param close: if true, close the figure after logging it
"""

def __init__(self, figure: plt.figure, close: bool):
def __init__(self, figure: matplotlib.figure.Figure, close: bool):
self.figure = figure
self.close = close

Expand Down
2 changes: 1 addition & 1 deletion stable_baselines3/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0a2
2.2.0a3

0 comments on commit 1cd6ae4

Please sign in to comment.