Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
## Unreleased

### Enhancements:
- Relax `numpy` version upper bound to include `numpy<3`
- Relax `numpy` version upper bound to include `numpy<3` (judahrand)
- Add a `-s`/`--skip-if-exists` option to the `init` command to avoid reinitializing a repo if one already exists (stevenjlm)

### Fixes:
- Fix SB3 callback metric tracking (mihran113)

## 3.22.0 Jun 20, 2024

### Enhancements:
Expand Down
2 changes: 1 addition & 1 deletion aim/sdk/adapters/sb3.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def write(
step: int = 0,
) -> None:
for (key, value), (_, excluded) in zip(sorted(key_values.items()), sorted(key_excluded.items())):
if excluded is not None:
if excluded is not None and 'aim' in excluded:
continue

if isinstance(value, np.ScalarType):
Expand Down