Skip to content

Commit 8fd2f48

Browse files
ruidazengrwightman
authored andcommitted
fix: minor typos in README
1 parent b0068ba commit 8fd2f48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Add a set of new very well trained ResNet & ResNet-V2 18/34 (basic block) weight
248248
### April 11, 2024
249249
* Prepping for a long overdue 1.0 release, things have been stable for a while now.
250250
* Significant feature that's been missing for a while, `features_only=True` support for ViT models with flat hidden states or non-std module layouts (so far covering `'vit_*', 'twins_*', 'deit*', 'beit*', 'mvitv2*', 'eva*', 'samvit_*', 'flexivit*'`)
251-
* Above feature support achieved through a new `forward_intermediates()` API that can be used with a feature wrapping module or direclty.
251+
* Above feature support achieved through a new `forward_intermediates()` API that can be used with a feature wrapping module or directly.
252252
```python
253253
model = timm.create_model('vit_base_patch16_224')
254254
final_feat, intermediates = model.forward_intermediates(input)
@@ -486,7 +486,7 @@ Included optimizers available via `timm.optim.create_optimizer_v2` factory metho
486486
* `madgrad` an implementation of MADGRAD adapted from https://github.com/facebookresearch/madgrad - https://arxiv.org/abs/2101.11075
487487
* `mars` MARS optimizer from https://github.com/AGI-Arena/MARS - https://arxiv.org/abs/2411.10438
488488
* `nadam` an implementation of Adam w/ Nesterov momentum
489-
* `nadamw` an impementation of AdamW (Adam w/ decoupled weight-decay) w/ Nesterov momentum. A simplified impl based on https://github.com/mlcommons/algorithmic-efficiency
489+
* `nadamw` an implementation of AdamW (Adam w/ decoupled weight-decay) w/ Nesterov momentum. A simplified impl based on https://github.com/mlcommons/algorithmic-efficiency
490490
* `novograd` by [Masashi Kimura](https://github.com/convergence-lab/novograd) - https://arxiv.org/abs/1905.11286
491491
* `radam` by [Liyuan Liu](https://github.com/LiyuanLucasLiu/RAdam) - https://arxiv.org/abs/1908.03265
492492
* `rmsprop_tf` adapted from PyTorch RMSProp by myself. Reproduces much improved Tensorflow RMSProp behaviour

0 commit comments

Comments
 (0)