Don't raise error on len of empty Batch (#1084)
This commit is contained in:
parent
bf0d632108
commit
55fa6f7f35
@ -19,6 +19,7 @@ instead of just `nn.Module`. #1032
|
|||||||
- Added interfaces for most `Actor` and `Critic` classes to enforce the presence of `forward` methods. #1032
|
- Added interfaces for most `Actor` and `Critic` classes to enforce the presence of `forward` methods. #1032
|
||||||
- Simplified `PGPolicy` forward by unifying the `dist_fn` interface (see associated breaking change). #1032
|
- Simplified `PGPolicy` forward by unifying the `dist_fn` interface (see associated breaking change). #1032
|
||||||
- Use `.mode` of distribution instead of relying on knowledge of the distribution type. #1032
|
- Use `.mode` of distribution instead of relying on knowledge of the distribution type. #1032
|
||||||
|
- Exception no longer raised on `len` of empty `Batch`. #1084
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
||||||
|
@ -870,16 +870,17 @@ class Batch(BatchProtocol):
|
|||||||
"""Return len(self)."""
|
"""Return len(self)."""
|
||||||
lens = []
|
lens = []
|
||||||
for obj in self.__dict__.values():
|
for obj in self.__dict__.values():
|
||||||
|
# TODO: causes inconsistent behavior to batch with empty batches
|
||||||
|
# and batch with empty sequences of other type. Remove, but only after
|
||||||
|
# Buffer and Collectors have been improved to no longer rely on this
|
||||||
if isinstance(obj, Batch) and obj.is_empty(recurse=True):
|
if isinstance(obj, Batch) and obj.is_empty(recurse=True):
|
||||||
continue
|
continue
|
||||||
if hasattr(obj, "__len__") and (isinstance(obj, Batch) or obj.ndim > 0):
|
if hasattr(obj, "__len__") and (isinstance(obj, Batch) or obj.ndim > 0):
|
||||||
lens.append(len(obj))
|
lens.append(len(obj))
|
||||||
else:
|
else:
|
||||||
raise TypeError(f"Object {obj} in {self} has no len()")
|
raise TypeError(f"Object {obj} in {self} has no len()")
|
||||||
if len(lens) == 0:
|
if not lens:
|
||||||
# empty batch has the shape of any, like the tensorflow '?' shape.
|
return 0
|
||||||
# So it has no length.
|
|
||||||
raise TypeError(f"Object {self} has no len()")
|
|
||||||
return min(lens)
|
return min(lens)
|
||||||
|
|
||||||
def is_empty(self, recurse: bool = False) -> bool:
|
def is_empty(self, recurse: bool = False) -> bool:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user