ENAS-pytorch icon indicating copy to clipboard operation
ENAS-pytorch copied to clipboard

PyTorch implementation of "Efficient Neural Architecture Search via Parameters Sharing"

Results 40 ENAS-pytorch issues
Sort by recently updated
recently updated
newest added

In issues 33 (https://github.com/carpedm20/ENAS-pytorch/issues/33) I wondered why the Embedding encoder was as large as it was. The response from @carpedm20 was: > You can assume the same activation in a...

$ sudo pip3 install pygraphviz WARNING: The directory '/home/usr1/.cache/pip' or its parent directory is not owned or is not writable by the current user. The cache has been disabled. Check...

Traceback (most recent call last): File "main.py", line 48, in main(args) File "main.py", line 26, in main dataset = data.image.Image(args.data_path) File "/home/comp/csxinhe/Code/ENAS-pytorch/data/image.py", line 8, in __init__ if args.datset == 'cifar10':...

I encountered this strange error. Here is the output ``` $ python main.py 2020-10-17 06:19:37,971:INFO::[*] Make directories : logs/ptb_2020-10-17_06-19-37 2020-10-17 06:19:45,686:INFO::regularizing: 2020-10-17 06:19:56,858:INFO::# of parameters: 146,014,000 2020-10-17 06:19:57,208:INFO::[*] MODEL dir:...

kukby@kukby-GI5KN54:~/ENAS-pytorch-master$ python3 main.py --network_type cnn --dataset cifar --controller_optim momentum --controller_lr_cosine=True --controller_lr_max 0.05 --controller_lr_min 0.0001 --entropy_coeff 0.1 2020-03-03 20:59:42,792:INFO::[*] Make directories : logs/cifar_2020-03-03_20-59-42 Files already downloaded and verified Traceback (most recent...

I tried running: `python main.py --network_type rnn --dataset ptb --controller_optim adam --controller_lr 0.00035 --shared_optim sgd --shared_lr 20.0 --entropy_coeff 0.0001` But got: ``` 2018-09-20 11:34:56,560:INFO::[*] Make directories : logs/ptb_2018-09-20_11-34-56 2018-09-20 11:35:01,015:INFO::regularizing:...

What is the recommend GPU for ENAS? Does the NVIDIA GeForce RTX 2080 Ti a good choice? Thanks

1. utils.py", line 150, nbatch = data.size(0) // bsz AttributeError: 'DataLoader' object has no attribute 'size' -> nbatch = len (data.size) 2. image.py line 9, if args == 'cifar' ->...

Hi, thanks for sharing the code. I am implementing the CNN part. I think the` block_idx` in `forward` function should be moded by 2 when CNN case as you used...