Abhishek

Results 10 comments of Abhishek

Doing it :+1: The overview is already in the README file so I guess we can leave it in the contribution.md?

Yes, a `ReLu` activation has to be added. And to achieve the accuracy mentioned in the paper, I contacted the authors regarding the same. But if you will see the...

Hi @ChesterAiGo Thanks. As far as I can tell, you should try with a different set of learning parameter, maybe try Adam as your optimizer because the network is not...

Oh, that's weird, the network cannot overfit, we are already using a dropout of 0.5. Since the network is converging (`train_acc=0.94` is a proof of that), I don't think trying...

Hii @hugh2017 Can you post the line number in which you are getting the error? And are you trying this on CIFAR10 or on your own dataset?

I assume that you are running this code on your personal computer so you are having only a single GPU to play with, so a temporary hack would be remove...

The above modification works because of the image_dim_ordering. Kindly refer to the keras docs for details. The NameError is because you have uninstalled dependencies. Make sure that you have openCV...

You are training the model on CIFAR-10 and the images in CIFAR are of 32*32 so you need to pass in the image with the exact same resolution. So replace...

Hi @cjayanth95 I guess its probably you are linking against the wrong Python library. Make suitable changes in the make file to get rid of it. What version of Boost...

You can very easily port this to pytho-3, all you need to run boost with the correct python_verdsion flags. Following are the steps to do it: #### Install python 3.5...