Skip to content

Commit a7c5368

Browse files
committed
Update README, bump version to 1.0.17 in prep for release
1 parent 37d9440 commit a7c5368

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,32 @@
1212

1313
## What's New
1414

15+
## July 7, 2025
16+
* MobileNet-v5 backbone tweaks for improved Google Gemma 3n behaviour (to pair with updated official weights)
17+
* Add stem bias (zero'd in updated weights, compat break with old weights)
18+
* GELU -> GELU (tanh approx). A minor change to be closer to JAX
19+
* Add two arguments to layer-decay support, a min scale clamp and 'no optimization' scale threshold
20+
* Add 'Fp32' LayerNorm, RMSNorm, SimpleNorm variants that can be enabled to force computation of norm in float32
21+
* Some typing, argument cleanup for norm, norm+act layers done with above
22+
* Support Naver ROPE-ViT (https://github.com/naver-ai/rope-vit) in `eva.py`, add RotaryEmbeddingMixed module for mixed mode, weights on HuggingFace Hub
23+
24+
|model |img_size|top1 |top5 |param_count|
25+
|--------------------------------------------------|--------|------|------|-----------|
26+
|vit_large_patch16_rope_mixed_ape_224.naver_in1k |224 |84.84 |97.122|304.4 |
27+
|vit_large_patch16_rope_mixed_224.naver_in1k |224 |84.828|97.116|304.2 |
28+
|vit_large_patch16_rope_ape_224.naver_in1k |224 |84.65 |97.154|304.37 |
29+
|vit_large_patch16_rope_224.naver_in1k |224 |84.648|97.122|304.17 |
30+
|vit_base_patch16_rope_mixed_ape_224.naver_in1k |224 |83.894|96.754|86.59 |
31+
|vit_base_patch16_rope_mixed_224.naver_in1k |224 |83.804|96.712|86.44 |
32+
|vit_base_patch16_rope_ape_224.naver_in1k |224 |83.782|96.61 |86.59 |
33+
|vit_base_patch16_rope_224.naver_in1k |224 |83.718|96.672|86.43 |
34+
|vit_small_patch16_rope_224.naver_in1k |224 |81.23 |95.022|21.98 |
35+
|vit_small_patch16_rope_mixed_224.naver_in1k |224 |81.216|95.022|21.99 |
36+
|vit_small_patch16_rope_ape_224.naver_in1k |224 |81.004|95.016|22.06 |
37+
|vit_small_patch16_rope_mixed_ape_224.naver_in1k |224 |80.986|94.976|22.06 |
38+
* Some cleanup of ROPE modules, helpers, and FX tracing leaf registration
39+
* Preparing version 1.0.17 release
40+
1541
## June 26, 2025
1642
* MobileNetV5 backbone (w/ encoder only variant) for [Gemma 3n](https://ai.google.dev/gemma/docs/gemma-3n#parameters) image encoder
1743
* Version 1.0.16 released

timm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.17.dev0'
1+
__version__ = '1.0.17'

0 commit comments

Comments
 (0)