Skip to content

Commit 47811bc

Browse files
committed
Update README, bump version to 1.0.13 non-dev
1 parent eeee38e commit 47811bc

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212

1313
## What's New
1414

15+
## Jan 9, 2025
16+
* Add support to train and validate in pure `bfloat16` or `float16`
17+
* `wandb` project name arg added by https://github.com/caojiaolong, use arg.experiment for name
18+
* Fix old issue w/ checkpoint saving not working on filesystem w/o hard-link support (e.g. FUSE fs mounts)
19+
* 1.0.13 release
20+
1521
## Jan 6, 2025
1622
* Add `torch.utils.checkpoint.checkpoint()` wrapper in `timm.models` that defaults `use_reentrant=False`, unless `TIMM_REENTRANT_CKPT=1` is set in env.
1723

@@ -20,7 +26,7 @@
2026
* Add AIM-v2 encoders from https://github.com/apple/ml-aim, see on Hub: https://huggingface.co/models?search=timm%20aimv2
2127
* Add PaliGemma2 encoders from https://github.com/google-research/big_vision to existing PaliGemma, see on Hub: https://huggingface.co/models?search=timm%20pali2
2228
* Add missing L/14 DFN2B 39B CLIP ViT, `vit_large_patch14_clip_224.dfn2b_s39b`
23-
* Fix existing RmsProp layer to match standard formulation, use PT 2.5 impl when possible. Move old impl to `SimpleNorm` layer, it's LN w/o centering or bias. There were only two `timm` models using it, and they have been updated.
29+
* Fix existing `RmsNorm` layer & fn to match standard formulation, use PT 2.5 impl when possible. Move old impl to `SimpleNorm` layer, it's LN w/o centering or bias. There were only two `timm` models using it, and they have been updated.
2430
* Allow override of `cache_dir` arg for model creation
2531
* Pass through `trust_remote_code` for HF datasets wrapper
2632
* `inception_next_atto` model added by creator

timm/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.13.dev0'
1+
__version__ = '1.0.13'

0 commit comments

Comments
 (0)