From a46095c2ee1ef1a1c880b687633ee61eb24a3436 Mon Sep 17 00:00:00 2001 From: D-X-Y <280835372@qq.com> Date: Wed, 19 May 2021 16:32:44 +0800 Subject: [PATCH] Refine lib -> xautodl --- CHANGE-LOG.md | 3 ++- docs/CVPR-2019-GDAS.md | 2 +- xautodl/__init__.py | 2 +- xautodl/models/shape_searchs/generic_size_tiny_cell_model.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGE-LOG.md b/CHANGE-LOG.md index e743d50..ae2476d 100644 --- a/CHANGE-LOG.md +++ b/CHANGE-LOG.md @@ -8,4 +8,5 @@ - [2020.09.16] [7052265] Create NATS-BENCH. - [2020.10.15] [446262a](https://github.com/D-X-Y/AutoDL-Projects/tree/446262a) Update NATS-BENCH to version 1.0 - [2020.12.20] [dae387a](https://github.com/D-X-Y/AutoDL-Projects/tree/dae387a) Update NATS-BENCH to version 1.1 -- [2021.05.18] [98fadf8](https://github.com/D-X-Y/AutoDL-Projects/tree/98fadf8086727f6311d477d0e4f2d5bb7e41ca59) Before moving to `xautodl` +- [2021.05.18] [98fadf8](https://github.com/D-X-Y/AutoDL-Projects/tree/98fadf8) Before moving to `xautodl` +- [2021.05.19] [129c9e5](https://github.com/D-X-Y/AutoDL-Projects/tree/129c9e5) `xautodl` is close to ready diff --git a/docs/CVPR-2019-GDAS.md b/docs/CVPR-2019-GDAS.md index 0464434..d3d18d0 100644 --- a/docs/CVPR-2019-GDAS.md +++ b/docs/CVPR-2019-GDAS.md @@ -11,7 +11,7 @@ Experiments on CIFAR-10, CIFAR-100, ImageNet, PTB, and WT2 are reported. ## Requirements and Preparation -Please install `Python>=3.6` and `PyTorch>=1.2.0`. +Please install `Python>=3.6` and `PyTorch>=1.5.0`. CIFAR and ImageNet should be downloaded and extracted into `$TORCH_HOME`. diff --git a/xautodl/__init__.py b/xautodl/__init__.py index 45657a1..da37f20 100644 --- a/xautodl/__init__.py +++ b/xautodl/__init__.py @@ -7,5 +7,5 @@ def version(): - versions = ["0.9.9"] # 2021.05.18 + versions = ["0.9.9"] # 2021.05.19 return versions[-1] diff --git a/xautodl/models/shape_searchs/generic_size_tiny_cell_model.py b/xautodl/models/shape_searchs/generic_size_tiny_cell_model.py index 1816c5b..c53805d 100644 --- a/xautodl/models/shape_searchs/generic_size_tiny_cell_model.py +++ b/xautodl/models/shape_searchs/generic_size_tiny_cell_model.py @@ -11,7 +11,7 @@ import torch.nn as nn from ..cell_operations import ResNetBasicblock from ..cell_infers.cells import InferCell -from .shape_searchs.SoftSelect import select2withP, ChannelWiseInter +from .SoftSelect import select2withP, ChannelWiseInter class GenericNAS301Model(nn.Module):