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

Keras implementation of Efficient Neural Architecture Search

Results 4 ENAS-Keras issues
Sort by recently updated
recently updated
newest added

``` def _controller_loss(y_true, y_pred): if self.baseline is None: self.baseline = 0 else: baseline = (1 - self.baseline_decay) * (self.baseline - reward) # did you forget self.baseline and subtraction here? self.baseline...

Hi. I've been recently writing ENAS myself, and I notice this project as a great reference for implementing ENAS in Keras. After reading your code, I have a concern that...

Is the repository under development or is it closed? I am especially interested in the RNN cell search.

Thanks for your sharing. I run the code but it seems that there is no GPU used. Should I set some parameters?