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

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

Open heartInsert opened this issue 5 years ago • 2 comments

heartInsert avatar Jul 01 '19 08:07 heartInsert

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...")

`

xz1220 avatar Aug 11 '19 08:08 xz1220

Bad news

heartInsert avatar Dec 13 '19 03:12 heartInsert