You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
alih
e91c2181b3
Fixes 1.0 crop reproducibility issue.
...
transforms.CenterCrop automatically converts image size into a tuple, but transforms.Resize does not.
When running models on ImageNet at 384x384 with 1.0 crop_pct, this will result in transforms.Resize(384).
Some methods (i.e. ConvNeXt, Swin) implement this with transforms.Resize((384, 384)).
As a result their reported scores on ImageNet at 384 are not reproducible with timm's validation script.
3 years ago
..
parsers
Improve image extension handling, add methods to modify / get defaults. Fix #1335 fix #1274 .
3 years ago
__init__.py
Improve image extension handling, add methods to modify / get defaults. Fix #1335 fix #1274 .
3 years ago
auto_augment.py
Follow up to #1256 , fix interpolation warning in auto_autoaugment as well
3 years ago
config.py
support test_crop_size in data config resolve
3 years ago
constants.py
Big re-org, working towards making pip/module as 'timm'
6 years ago
dataset.py
Fix MobileNetV2 head conv size for multiplier < 1.0. Add some missing modification copyrights, fix starting date of some old ones.
4 years ago
dataset_factory.py
Change set -> dict w/ None keys for dataset split synonym search, so always consistent if more than 1 exists. Fix #1224
3 years ago
distributed_sampler.py
Significant model refactor and additions:
3 years ago
loader.py
Significant model refactor and additions:
3 years ago
mixup.py
Fix MobileNetV2 head conv size for multiplier < 1.0. Add some missing modification copyrights, fix starting date of some old ones.
4 years ago
random_erasing.py
Fix MobileNetV2 head conv size for multiplier < 1.0. Add some missing modification copyrights, fix starting date of some old ones.
4 years ago
real_labels.py
Fix a bug with accuracy retrieving from RealLabels
5 years ago
tf_preprocessing.py
Remove some old __future__ imports
5 years ago
transforms.py
use `Image.Resampling` namespace for PIL mapping ( #1256 )
3 years ago
transforms_factory.py
Fixes 1.0 crop reproducibility issue.
3 years ago