Skip to content

Commit 4d09234

Browse files
author
Federico Belotti
authored
feat: bump version to 0.5.6 (#292)
* feat: bump version to 0.5.6 * Update version in notebook
1 parent 878620a commit 4d09234

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.5
16+
version: 0.5.6
1717
license: "Apache-2.0"
1818
DOI: 10.5281/zenodo.11030899
1919
url: "https://eclecticsheep.ai"

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.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",
9+
"This notebook is updated to SheepRL version [v0.5.6](https://github.com/Eclectic-Sheep/sheeprl/tree/release/v0.5.6). 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",
@@ -366,7 +366,7 @@
366366
" )\n",
367367
" rec_obs_played = world_model.observation_model(played_latent_states)\n",
368368
" # The decoder has been trained to reconstruct the observations from the latent states in the range [-0.5, 0.5]\n",
369-
" # NOTE: Check how the observations are handled in older versions of SheepRL (before 0.5.5)\n",
369+
" # NOTE: Check how the observations are handled in older versions of SheepRL (before 0.5.)\n",
370370
" # if you need to add 0.5 or not (in latest versions it is done automatically by the decoder in its forward method).\n",
371371
" reconstruced_step_data[\"rgb\"] = rec_obs_played[\"rgb\"].unsqueeze(0).detach().cpu().numpy() + 0.5\n",
372372
" rb_play.add(reconstruced_step_data)"
@@ -444,7 +444,7 @@
444444
"name": "python",
445445
"nbconvert_exporter": "python",
446446
"pygments_lexer": "ipython3",
447-
"version": "3.10.13"
447+
"version": "3.11.9"
448448
}
449449
},
450450
"nbformat": 4,

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.5"
203+
current_version = "0.5.6"
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"
55+
__version__ = "0.5.6"
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)