Sampson1107
Sampson1107
I install Caffe2 on the Centos7.1 OS successful. [root@dl3 build]# python -c 'from caffe2.python import core' 2>/dev/null && echo "Success" || echo "Failure" Success python -m caffe2.python.operator_test.relu_op_test Trying example: test_relu(self=,...
Base on the research of 'Kaiming He https://github.com/KaimingHe/deep-residual-networks', the accuracy of training resnet50 on the Imagenet2012 dataset should be around 75%. The alexnet model should be around 58% described in...
@reedwm Hi, I am in trouble during using the following code. ""' for i, (g, v) in enumerate(grads): apply_gradient_op = opt.apply_gradients([(g, v)]) barrier = self.benchmark_cnn.add_sync_queues_and_barrier( 'replicate_variable_%s' % i, [apply_gradient_op]) """...