Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dev version to 0.16.0 #123

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nnabla_rl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2020,2021 Sony Corporation.
# Copyright 2021,2022,2023 Sony Group Corporation.
# Copyright 2021,2022,2023,2024 Sony Group Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.15.0.dev1'
__version__ = '0.16.0.dev1'

from nnabla_rl.logger import enable_logging, disable_logging # noqa
from nnabla_rl.scopes import eval_scope, is_eval_scope # noqa
Expand Down
2 changes: 1 addition & 1 deletion nnabla_rl/model_trainers/policy/amp_policy_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,6 @@ def _setup_training_variables(self, batch_size) -> TrainingVariables:
extra["advantage"] = advantage_var
return TrainingVariables(batch_size, s_current_var, a_current_var, extra=extra)

@ property
@property
def loss_variables(self) -> Dict[str, nn.Variable]:
return {"pi_loss": self._pi_loss}
Loading