Karan Dwivedi

Results 2 issues of Karan Dwivedi

In [this](https://github.com/melodyguan/enas/blob/master/src/cifar10/micro_controller.py#L178-L185) part of the code: ```python logits = tf.matmul(next_h[-1], self.w_soft) + self.b_soft if self.temperature is not None: logits /= self.temperature if self.tanh_constant is not None: op_tanh = self.tanh_constant /...

[In this code](https://github.com/melodyguan/enas/blob/master/src/cifar10/micro_child.py#L275-L283): ```python if self.fixed_arc is None: x = self._factorized_reduction(x, out_filters, 2, is_training) layers = [layers[-1], x] #