38d8f67570Fix potential issue with change to num_classes arg in train/validate.py defaulting to None (rely on model def / default_cfg)
Ross Wightman
2021-01-25 11:53:34 -0800
587780e56bUpdate README.md and bump version to 0.4.0
Ross Wightman
2021-01-25 11:22:11 -0800
bb50ac4708Add DeiT distilled weights and distilled model def. Remove some redudant ViT model args.
Ross Wightman
2021-01-25 11:05:23 -0800
d17adadabbfix: add triplet attention to model registry
iyaja
2021-01-25 13:19:19 +0530
c16e965037Add some ViT comments and fix a few minor issues.
Ross Wightman
2021-01-24 23:18:35 -0800
5cdebbf396fix: triplet attention module name
iyaja
2021-01-25 00:41:41 +0530
22748f1a2dConvert samples/targets in ParserImageInTar to numpy arrays, slightly less mem usage for massive datasets. Add a few more se/eca model defs to resnet.py
Ross Wightman
2021-01-22 16:54:33 -0800
5d4c3d0af3Add enhanced ParserImageInTar that can read images from tars within tars, folders with multiple tars, etc. Additional comment cleanup.
Ross Wightman
2021-01-22 10:52:04 -0800
55f7dfa9eaRefactor vision_transformer entrpy fns, add pos embedding resize support for fine tuning, add some deit models for testing
Ross Wightman
2021-01-18 16:11:02 -0800
Align block with original design
Zhiyuan Chen
2021-01-18 18:12:01 +0800
9d5d4b8df6Fix silly train.py typo during dataset work
Ross Wightman
2021-01-16 16:32:21 -0800
d55bcc0feeFinishing adding stochastic depth support to BiT ResNetV2 models
Ross Wightman
2021-01-16 16:32:03 -0800
0a1668f63eUpdate tests
Ross Wightman
2021-01-16 12:37:10 -0800
58ccf43150Add BiT references and knowledge distill links to readme/docs
Ross Wightman
2021-01-16 12:30:02 -0800
855d6cc217More dataset work including factories and a tensorflow datasets (TFDS) wrapper * Add parser/dataset factory methods for more flexible dataset & parser creation * Add dataset parser that wraps TFDS image classification datasets * Tweak num_classes handling bug for 21k models * Add initial deit models so they can be benchmarked in next csv results runs
Ross Wightman
2021-01-15 17:26:20 -0800
Update README.md
v0.3.3
Ross Wightman
2021-01-03 12:49:31 -0800
c96e9f99a0Update version to 0.3.3
Ross Wightman
2021-01-03 12:43:44 -0800
a7d0a8b5b2Update results csv files with latest models, incl 101D, 152D, 200D, SE152D ResNets and yet to be merged BiT and ViT-R50 models.
Ross Wightman
2021-01-03 12:42:43 -0800
4e2533db77Add 320x320 model default cfgs for 101D and 152D ResNets. Add SEResNet-152D weights and 320x320 cfg.
Ross Wightman
2021-01-03 11:25:07 -0800
0167f749d3Remove some old __future__ imports
Ross Wightman
2021-01-03 11:24:16 -0800
85bf4b8cd6Add setup.cfg for conda / fastai integration
Ross Wightman
2021-01-03 11:20:33 -0800
e553480b67Add 21843 synset txt for google 21k models like BiT/ViT
Ross Wightman
2020-12-28 14:39:29 -0800
e35e9760a6More work on dataset / parser split and imagenet21k (tar) support
Ross Wightman
2020-12-28 14:39:05 -0800
ce69de70d3Add 21k weight urls to vision_transformer. Cleanup feature_info for preact ResNetV2 (BiT) models
Ross Wightman
2020-12-28 14:37:06 -0800
231d04e91aResNetV2 pre-act and non-preact model, w/ BiT pretrained weights and support for ViT R50 model. Tweaks for in21k num_classes passing. More to do... tests failing.
Ross Wightman
2020-12-24 12:03:31 -0800
de6046e213Initial commit for dataset / parser reorg to support additional datasets / types
Ross Wightman
2020-12-08 17:03:00 -0800
16cd1f9fd2Change the --img-size parameter into a int list to specify depth, height and width by a parameter
#322
Csaba Kertesz
2020-12-28 22:52:53 +0200
392595c7ebAdd pool_size to default cfgs for new models to prevent tests from failing. Add explicit 200D_320 model entrypoint for next benchmark run.
Ross Wightman
2020-12-18 21:28:47 -0800
Merge pull request #300 from tmkkk/real-labels-fix
Ross Wightman
2020-12-04 08:36:38 -0800
de15b43865Fix a bug with accuracy retrieving from RealLabels
#300
Tymoteusz Wiśniewski
2020-12-04 16:12:50 +0100
cd72e66effBug in last mod for features_only default_cfg
#297
Ross Wightman
2020-12-03 12:33:01 -0800
867a0e5a04Add default_cfg back to models wrapped in feature extraction module as per discussion in #294.
Ross Wightman
2020-12-03 10:24:35 -0800
4ca52d73d8Add separate set and update method to ModelEmaV2
Ross Wightman
2020-12-03 10:05:09 -0800
2ed8f24715A few more changes for 0.3.2 maint release. Linear layer change for mobilenetv3 and inception_v3, support no bias for linear wrapper.
Ross Wightman
2020-11-30 16:19:52 -0800
6504a42832Version 0.3.2
Ross Wightman
2020-11-30 13:39:08 -0800
460eba7f24Work around casting issue with combination of native torch AMP and torchscript for Linear layers
Ross Wightman
2020-11-30 13:29:33 -0800
5f4b6076d8Fix inplace arg compat for GELU and PreLU via activation factory
Ross Wightman
2020-11-30 13:27:40 -0800
fd962c4b4aNative SiLU (Swish) op doesn't export to ONNX
Ross Wightman
2020-11-29 21:56:55 -0800
27bbc70d71Add back old ModelEma and rename new one to ModelEmaV2 to avoid compat breaks in dependant code. Shuffle train script, add a few comments, remove DataParallel support, support experimental torchscript training.
Ross Wightman
2020-11-29 16:12:41 -0800
Merge pull request #263 from rwightman/fixes_oct2020
Ross Wightman
2020-10-29 20:14:13 -0700
741572dc9dBump version to 0.3.0 for pending PyPi push
#263
Ross Wightman
2020-10-29 17:31:39 -0700
b401952cafAdd newly added vision transformer large/base 224x224 weights ported from JAX official repo
Ross Wightman
2020-10-29 17:31:01 -0700
61200db0abin_chans=1 working w/ pretrained weights for vision_transformer
Ross Wightman
2020-10-29 15:49:36 -0700
e90edce438Support native silu activation (aka swish). An optimized ver is available in PyTorch 1.7.
Ross Wightman
2020-10-29 15:45:17 -0700
da6cd2cc1fFix regression for pretrained classifier loading when using entrypt functions directly
Ross Wightman
2020-10-29 15:43:39 -0700
f591e90b0dMake sure num_features attr is present in vit models as with others
Ross Wightman
2020-10-29 15:33:47 -0700
4a3df7842aFix topn metric view regression on PyTorch 1.7
Ross Wightman
2020-10-29 14:04:15 -0700
f944242cb0Fix#262, num_classes arg mixup. Make vision_transformers a bit closer to other models wrt get/reset classfier/forward_features. Fix torchscript for ViT.
Ross Wightman
2020-10-29 13:58:28 -0700
da1b90e5c9Update results csvs with latest run
Ross Wightman
2020-10-29 07:55:13 -0700
736f209e7dUpdate vision transformers to be compatible with official code. Port official ViT weights from jax impl.
Ross Wightman
2020-10-26 18:42:11 -0700