Has the cnn module could been run? It's seems that author has gived up this project
heartInsert opened this issue · 2 comments
heartInsert commented
Has the cnn module could been run? It's seems that author has gived up this project
xz1220 commented
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
Bad news