carpedm20/ENAS-pytorch

Has the cnn module could been run? It's seems that author has gived up this project

heartInsert opened this issue · 2 comments

Has the cnn module could been run? It's seems that author has gived up this project

yes, cause:

`
class CNN(SharedModel):
def init(self, args, images):
super(CNN, self).init()

    self.args = args
    self.images = images

    self.w_c, self.w_h = defaultdict(dict), defaultdict(dict)
    self.reset_parameters()

    self.conv = defaultdict(dict)
    for idx in range(args.num_blocks):
        for jdx in range(idx+1, args.num_blocks):
            self.conv[idx][jdx] = conv()

    raise NotImplemented("In progress...")

`

Bad news