Skip to content

Commit

Permalink
Merge pull request #113 from sony/feature/20231107-update-dev-version
Browse files Browse the repository at this point in the history
Update dev version to 0.15.0
  • Loading branch information
TakayoshiTakayanagi authored Nov 15, 2023
2 parents 0881e5b + 89cd77a commit 889bd58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nnabla_rl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.14.0.dev1'
__version__ = '0.15.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/models/pybullet/q_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def argmax_q(self, s: Tuple[nn.Variable, nn.Variable]) -> nn.Variable:
def objective_function(a: nn.Variable) -> nn.Variable:
batch_size, sample_size, action_dim = a.shape
a = a.reshape((batch_size*sample_size, action_dim))
q_value = self.q(tiled_s, a) # type: ignore
q_value = self.q(tiled_s, a)
q_value = q_value.reshape((batch_size, sample_size, 1))
return q_value

Expand Down

0 comments on commit 889bd58

Please sign in to comment.