diff --git a/README.md b/README.md index e9889c6..fa47846 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,19 @@ This is still under development, so some things may not work as intended. I plan ## What's new +### - v0.3.2 + +- Added new models: + - MemFlow [https://arxiv.org/abs/2404.04808](https://arxiv.org/abs/2404.04808) + - NeuFlow [https://arxiv.org/abs/2403.10425](https://arxiv.org/abs/2403.10425) + - SEA-RAFT [https://arxiv.org/abs/2405.14793](https://arxiv.org/abs/2405.14793) + - SplatFlow [https://arxiv.org/abs/2306.08887](https://arxiv.org/abs/2306.08887) +- Add support for more datasets: + - TartanAir [https://theairlab.org/tartanair-dataset/](https://theairlab.org/tartanair-dataset/) + - Kubric [https://github.com/google-research/kubric](https://github.com/google-research/kubric) +- Add ONNX and TensorRT conversion to RAPIDFlow +- Fix LR scheduler when accumulating gradients + ### - v0.3.1 - Added new models: diff --git a/ptlflow/__init__.py b/ptlflow/__init__.py index c131345..8a19b5e 100644 --- a/ptlflow/__init__.py +++ b/ptlflow/__init__.py @@ -16,7 +16,7 @@ # limitations under the License. # ============================================================================= -__version__ = "0.3.1" +__version__ = "0.3.2" import logging from argparse import Namespace diff --git a/pyproject.toml b/pyproject.toml index 559140a..bb7dbcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ptlflow" -version = "0.3.1" +version = "0.3.2" authors = [ {name = "Henrique Morimitsu", email = "henriquem87@gmail.com"}, ]