Skip to content

Commit 2bae379

Browse files
feat: bump version to 0.5.5 (#268)
1 parent 5298755 commit 2bae379

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors:
1313
given-names: "Refik"
1414
- family-names: "Milesi"
1515
given-names: "Michele"
16-
version: 0.5.4
16+
version: 0.5.5
1717
license: "Apache-2.0"
1818
url: "https://eclecticsheep.ai"
1919
repository-code: "https://github.com/Eclectic-Sheep/sheeprl/"

notebooks/dreamer_v3_imagination.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Dreamer V3 imagination + reconstruct observations\n",
88
"\n",
9-
"This notebook is updated to SheepRL version [v0.5.4](https://github.com/Eclectic-Sheep/sheeprl/tree/release/v0.5.4). It provides a way to obtain the imagined and reconstructed frames of the Dreamer V3 agent. By default, a GIF is created, but one can create a video from them.\n",
9+
"This notebook is updated to SheepRL version [v0.5.5](https://github.com/Eclectic-Sheep/sheeprl/tree/release/v0.5.5). It provides a way to obtain the imagined and reconstructed frames of the Dreamer V3 agent. By default, a GIF is created, but one can create a video from them.\n",
1010
"\n",
1111
"This notebook is organized as follows:\n",
1212
"1. Agent and environment creation from checkpoint\n",
@@ -357,8 +357,8 @@
357357
" )\n",
358358
" rec_obs_played = world_model.observation_model(played_latent_states)\n",
359359
" # The decoder has been trained to reconstruct the observations from the latent states in the range [-0.5, 0.5]\n",
360-
" # NOTE: in older versions of SheepRL (before 0.5.4) there's no need to add 0.5 since this is done\n",
361-
" # automatically by the decoder in its forward method.\n",
360+
" # NOTE: Check how the observations are handled in older versions of SheepRL (before 0.5.5)\n",
361+
" # if you need to add 0.5 or not (in latest versions it is done automatically by the decoder in its forward method).\n",
362362
" reconstruced_step_data[\"rgb\"] = rec_obs_played[\"rgb\"].unsqueeze(0).detach().cpu().numpy() + 0.5\n",
363363
" rb_play.add(reconstruced_step_data)"
364364
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ warn_return_any = false
200200

201201

202202
[tool.bumpver]
203-
current_version = "0.5.4"
203+
current_version = "0.5.5"
204204
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
205205
commit_message = "bump version {old_version} -> {new_version}"
206206
tag_message = "v{new_version}"

sheeprl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
np.int = np.int64
5353
np.bool = bool
5454

55-
__version__ = "0.5.5.dev1"
55+
__version__ = "0.5.5"
5656

5757

5858
# Replace `moviepy.decorators.use_clip_fps_by_default` method to work with python 3.8, 3.9, and 3.10

0 commit comments

Comments
 (0)