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
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased changes

## 0.1.2
- Added speed benchmarks for the UPET models
- Added a support for loading the local checkpoints
- Added variants selection for running different heads of the model
- Modifyed the internal TorchScript exporting mechanism, so it saves
a temporary model file on the disk.

## 0.1.1
- Fixed a few bugs in the code, improved documentation and added a support for
specifying the "latest" version of the model in the `upet.get_upet` and
Expand Down
2 changes: 1 addition & 1 deletion src/upet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.1"
__version__ = "0.1.2"

from ._models import get_upet, save_upet

Expand Down