diff --git a/README.md b/README.md index c3f0bba7..5b6fa724 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,13 @@ * The Hugging Face Hub (https://huggingface.co/timm) is now the primary source for `timm` weights. Model cards include link to papers, original source, license. * Previous 0.6.x can be cloned from [0.6.x](https://github.com/rwightman/pytorch-image-models/tree/0.6.x) branch or installed via pip with version. +### Nov 3, 2023 +* [DFN (Data Filtering Networks)](https://huggingface.co/papers/2309.17425) and [MetaCLIP](https://huggingface.co/papers/2309.16671) ViT weights added +* DINOv2 'register' ViT model weights added +* Add `quickgelu` ViT variants for OpenAI, DFN, MetaCLIP weights that use it (less efficient) +* Improved typing added to ResNet, MobileNet-v3 thanks to [Aryan](https://github.com/a-r-r-o-w) +* 0.9.9 release + ### Oct 20, 2023 * [SigLIP](https://huggingface.co/papers/2303.15343) image tower weights supported in `vision_transformer.py`. * Great potential for fine-tune and downstream feature use. diff --git a/timm/version.py b/timm/version.py index 17ea304b..1b1a934d 100644 --- a/timm/version.py +++ b/timm/version.py @@ -1 +1 @@ -__version__ = '0.9.8' +__version__ = '0.9.9'