This commit is contained in:
lucidrains 2025-10-18 08:07:06 -07:00
parent 5fc0022bbf
commit 911a1a8434
2 changed files with 2 additions and 2 deletions

View File

@ -1859,7 +1859,7 @@ class DynamicsWorldModel(Module):
if isinstance(tasks, int):
tasks = torch.full((batch_size,), tasks, device = self.device)
assert tasks.shape[0] == batch_size
assert not exists(tasks) or tasks.shape[0] == batch_size
# get state latent shape

View File

@ -1,6 +1,6 @@
[project]
name = "dreamer4"
version = "0.0.33"
version = "0.0.34"
description = "Dreamer 4"
authors = [
{ name = "Phil Wang", email = "lucidrains@gmail.com" }