101-eg-nas-neural-architecture-search-with-fast-evolutionary-exploration
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
✓DOI references
Found 1 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.2%) to scientific vocabulary
Last synced: 6 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: SZU-AdvTech-2024
- Default Branch: main
- Size: 0 Bytes
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Created about 1 year ago
· Last pushed about 1 year ago
Metadata Files
Citation
https://github.com/SZU-AdvTech-2024/101-EG-NAS-Neural-Architecture-Search-with-Fast-Evolutionary-Exploration/blob/main/
## EG-NAS
This is the official pytorch implementation for the paper: [*EG-NAS: Neural Architecture Search with Fast Evolutionary Exploration*](https://ojs.aaai.org/index.php/AAAI/article/view/28993),
which is accepted by AAAI2024. This repo contains the implementation of architecture search and evaluation on CIFAR-10 and ImageNet using our proposed EG-NAS.

## Quick Start
### Prerequisites
- python>=3.5
- pytorch>=1.1.0
- torchvision>=0.3.0
- pip install cmaes
## Usage
### Architecture Search on CIFAR-10
To search CNN cells on CIFAR-10, please run
```
export CUDA_VISIBLE_DEVICES=0
python train_search.py \
--batch_size 256 \
--data /path/to/cifar10
```
### Architecture Search on ImageNet
To search CNN cells on ImageNet, please run
```
export CUDA_VISIBLE_DEVICES=0,1,2,3
python train_search_imagenet.py \
--batch_size 1024 \
--data /path/to/imagennet \
```
### Architecture Evaluation on CIFAR-10
To evaluate the derived architecture on CIFAR-10, please run
```
export CUDA_VISIBLE_DEVICES=0
python train.py \
--data /path/to/cifar10 \
--save train_cifar10 \
--auxiliary \
--cutout \
```
### Architecture Evaluation on ImageNet
To evaluate the derived architecture on ImageNet, please run
```
export CUDA_VISIBLE_DEVICES=0,1,2,3
python train_imagenet.py \
--tmp_data_dir /path/to/imagenet \
--save train_imagenet \
--workers 16 \
--auxiliary \
--note imagenet_shapley \
```
## Citation
Please cite our paper if you find it useful in your research:
```
@article{Cai_Chen_Liu_Ling_Lai_2024,
title={EG-NAS: Neural Architecture Search with Fast Evolutionary Exploration},
volume={38},
url={https://ojs.aaai.org/index.php/AAAI/article/view/28993},
DOI={10.1609/aaai.v38i10.28993}, number={10},
journal={Proceedings of the AAAI Conference on Artificial Intelligence},
author={Cai, Zicheng and Chen, Lei and Liu, Peng and Ling, Tongtao and Lai, Yutao},
year={2024},
month={Mar.},
pages={11159-11167}
}
```
## Acknowledgements
We thank the authors of following works for opening source their excellent codes.
- [DARTS](https://github.com/quark0/darts)
- [PC-DARTS](https://github.com/yuhuixu1993/PC-DARTS)
- [DARTS-PT](https://github.com/ruocwang/darts-pt)
- [Shapley-NAS](https://github.com/Euphoria16/Shapley-NAS)
Owner
- Name: SZU-AdvTech-2024
- Login: SZU-AdvTech-2024
- Kind: organization
- Repositories: 1
- Profile: https://github.com/SZU-AdvTech-2024
Citation (citation.txt)
@article{REPO101,
author = "Cai, Zicheng and Chen, Lei and Liu, Peng and Ling, Tongtao and Lai, Yutao",
doi = "10.1609/aaai.v38i10.28993",
journal = "Proceedings of the AAAI Conference on Artificial Intelligence",
month = "Mar.",
number = "10",
pages = "11159-11167",
title = "{EG-NAS: Neural Architecture Search with Fast Evolutionary Exploration}",
url = "https://ojs.aaai.org/index.php/AAAI/article/view/28993",
volume = "38",
year = "2024"
}
GitHub Events
Total
- Watch event: 1
- Push event: 2
- Create event: 3
Last Year
- Watch event: 1
- Push event: 2
- Create event: 3