-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e77afb
commit cf44e30
Showing
9 changed files
with
1,784 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Copyright (c) 2023. Huawei Technologies Co., Ltd. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Please note we provide an open source software notice for the third party open source software along with this software and/or this software component contributed by Huawei (in the following just “this SOFTWARE”). The open source software licenses are granted by the respective right holders. | ||
|
||
Warranty Disclaimer | ||
THE OPEN SOURCE SOFTWARE IN THIS SOFTWARE IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. | ||
|
||
Copyright Notice and License Texts | ||
Software: ConvNeXt | ||
Copyright notice: | ||
Copyright (c) 2022 | ||
|
||
License: MIT License | ||
|
||
Copyright (c) Meta Platforms, Inc. and affiliates. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
|
||
# All rights reserved. | ||
|
||
# This source code is licensed under the license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
|
||
import os | ||
from torchvision import datasets, transforms | ||
|
||
from timm.data.constants import \ | ||
IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, IMAGENET_INCEPTION_MEAN, IMAGENET_INCEPTION_STD | ||
from timm.data import create_transform | ||
|
||
def build_dataset(is_train, args): | ||
transform = build_transform(is_train, args) | ||
|
||
print("Transform = ") | ||
if isinstance(transform, tuple): | ||
for trans in transform: | ||
print(" - - - - - - - - - - ") | ||
for t in trans.transforms: | ||
print(t) | ||
else: | ||
for t in transform.transforms: | ||
print(t) | ||
print("---------------------------") | ||
|
||
if args.data_set == 'CIFAR': | ||
dataset = datasets.CIFAR100(args.data_path, train=is_train, transform=transform, download=True) | ||
nb_classes = 100 | ||
elif args.data_set == 'IMNET': | ||
print("reading from datapath", args.data_path) | ||
root = os.path.join(args.data_path, 'train' if is_train else 'val') | ||
dataset = datasets.ImageFolder(root, transform=transform) | ||
nb_classes = 1000 | ||
elif args.data_set == "image_folder": | ||
root = args.data_path if is_train else args.eval_data_path | ||
dataset = datasets.ImageFolder(root, transform=transform) | ||
nb_classes = args.nb_classes | ||
assert len(dataset.class_to_idx) == nb_classes | ||
else: | ||
raise NotImplementedError() | ||
print("Number of the class = %d" % nb_classes) | ||
|
||
return dataset, nb_classes | ||
|
||
|
||
def build_transform(is_train, args): | ||
resize_im = args.input_size > 32 | ||
imagenet_default_mean_and_std = args.imagenet_default_mean_and_std | ||
mean = IMAGENET_INCEPTION_MEAN if not imagenet_default_mean_and_std else IMAGENET_DEFAULT_MEAN | ||
std = IMAGENET_INCEPTION_STD if not imagenet_default_mean_and_std else IMAGENET_DEFAULT_STD | ||
|
||
if is_train: | ||
# this should always dispatch to transforms_imagenet_train | ||
transform = create_transform( | ||
input_size=args.input_size, | ||
is_training=True, | ||
color_jitter=args.color_jitter, | ||
auto_augment=args.aa, | ||
interpolation=args.train_interpolation, | ||
re_prob=args.reprob, | ||
re_mode=args.remode, | ||
re_count=args.recount, | ||
mean=mean, | ||
std=std, | ||
) | ||
if not resize_im: | ||
transform.transforms[0] = transforms.RandomCrop( | ||
args.input_size, padding=4) | ||
return transform | ||
|
||
t = [] | ||
if resize_im: | ||
# warping (no cropping) when evaluated at 384 or larger | ||
if args.input_size >= 384: | ||
t.append( | ||
transforms.Resize((args.input_size, args.input_size), | ||
interpolation=transforms.InterpolationMode.BICUBIC), | ||
) | ||
print(f"Warping {args.input_size} size input images...") | ||
else: | ||
if args.crop_pct is None: | ||
args.crop_pct = 224 / 256 | ||
size = int(args.input_size / args.crop_pct) | ||
t.append( | ||
# to maintain same ratio w.r.t. 224 images | ||
transforms.Resize(size, interpolation=transforms.InterpolationMode.BICUBIC), | ||
) | ||
t.append(transforms.CenterCrop(args.input_size)) | ||
|
||
t.append(transforms.ToTensor()) | ||
t.append(transforms.Normalize(mean, std)) | ||
return transforms.Compose(t) |
Oops, something went wrong.