diff --git a/paddlehub/autodl/DELTA/README.md b/autodl/DELTA/README.md similarity index 84% rename from paddlehub/autodl/DELTA/README.md rename to autodl/DELTA/README.md index 7b235d46f085ba05aa41ab0dabd9317b3efd09da..8620bb0dec9c0fad617abe6537f5ac93c7c503b8 100644 --- a/paddlehub/autodl/DELTA/README.md +++ b/autodl/DELTA/README.md @@ -1,10 +1,12 @@ +# DELTA: DEep Learning Transfer using Feature Map with Attention for Convolutional Networks -# Introduction -This page implements the [DELTA](https://arxiv.org/abs/1901.09229) algorithm in [PaddlePaddle](https://www.paddlepaddle.org.cn/install/quick). +## Introduction + +This page implements the [DELTA](https://arxiv.org/abs/1901.09229) algorithm in [PaddlePaddle](https://www.paddlepaddle.org.cn). > Li, Xingjian, et al. "DELTA: Deep learning transfer using feature map with attention for convolutional networks." ICLR 2019. -# Preparation of Data and Pre-trained Model +## Preparation of Data and Pre-trained Model - Download transfer learning target datasets, like [Caltech-256](http://www.vision.caltech.edu/Image_Datasets/Caltech256/), [CUB_200_2011](http://www.vision.caltech.edu/visipedia/CUB-200-2011.html) or others. Arrange the dataset in this way: ``` @@ -23,7 +25,7 @@ This page implements the [DELTA](https://arxiv.org/abs/1901.09229) algorithm in - Download [the pretrained models](https://github.com/PaddlePaddle/models/tree/release/1.7/PaddleCV/image_classification#resnet-series). We give the results of ResNet-101 below. -# Running Scripts +## Running Scripts Modify `global_data_path` in `datasets/data_path` to the path root where the dataset is. diff --git a/paddlehub/autodl/DELTA/args.py b/autodl/DELTA/args.py similarity index 100% rename from paddlehub/autodl/DELTA/args.py rename to autodl/DELTA/args.py diff --git a/paddlehub/autodl/DELTA/datasets/data_path.py b/autodl/DELTA/datasets/data_path.py similarity index 100% rename from paddlehub/autodl/DELTA/datasets/data_path.py rename to autodl/DELTA/datasets/data_path.py diff --git a/paddlehub/autodl/DELTA/datasets/readers.py b/autodl/DELTA/datasets/readers.py similarity index 100% rename from paddlehub/autodl/DELTA/datasets/readers.py rename to autodl/DELTA/datasets/readers.py diff --git a/paddlehub/autodl/DELTA/main.py b/autodl/DELTA/main.py similarity index 100% rename from paddlehub/autodl/DELTA/main.py rename to autodl/DELTA/main.py diff --git a/paddlehub/autodl/DELTA/models/__init__.py b/autodl/DELTA/models/__init__.py similarity index 100% rename from paddlehub/autodl/DELTA/models/__init__.py rename to autodl/DELTA/models/__init__.py diff --git a/paddlehub/autodl/DELTA/models/resnet.py b/autodl/DELTA/models/resnet.py similarity index 100% rename from paddlehub/autodl/DELTA/models/resnet.py rename to autodl/DELTA/models/resnet.py diff --git a/paddlehub/autodl/DELTA/models/resnet_vc.py b/autodl/DELTA/models/resnet_vc.py similarity index 100% rename from paddlehub/autodl/DELTA/models/resnet_vc.py rename to autodl/DELTA/models/resnet_vc.py