qingzhouzhen commented on a change in pull request #7786: Pvanet:Deep but Lightweight Neural Neural Networks for Real-time Object Detection URL: https://github.com/apache/incubator-mxnet/pull/7786#discussion_r137443057
########## File path: example/image-classification/symbols/pvanet.py ########## @@ -0,0 +1,140 @@ +import mxnet as mx +def get_symbol(num_classes, **kwargs): + + data = mx.sym.Variable(name='data') Review comment: pvanet is a classification net, it is a little different with it's counterpart as in symbol_pvanet, And secondly, I cannot upload pre-trained model(pvanet.py) for it is too large, thus some one else could pretrain with pvanet.py on ImageNet ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
