Jesper Christensen
Jesper Christensen
Can you run this without CUDA? On the CPU?
I too can confirm that the Python 2.7 binaries supplied by @DeftWork works perfectly on my Raspberry Pi 3 model B running on Jessie Lite. Great work guys! I haven't...
Any updates on this @raghakot? I'm seeing the same thing trying to visualize a MobileNet with custom top.
Try building your model without using a sequential model. E.g. for VGG-16 do this; ```python # get base model base_model = applications.VGG16(weights='imagenet', include_top=False,input_shape = (img_width, img_height, 3)) # build top...
@fernandoFernandeSantos old thread - I know. I am working on implementer Faster R-CNN on the TX2, but it seems it cannot run due to some memory related issues (which is...
@HTLife @copark86 Did you manage to get the network to converge with good results?