carpedm20 / ENAS-pytorch

PyTorch implementation of "Efficient Neural Architecture Search via Parameters Sharing"
Apache License 2.0
2.69k stars 492 forks source link

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

Open heartInsert opened 5 years ago

xz1220 commented 5 years ago

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

`

heartInsert commented 4 years ago

Bad news