Skip to content

Instantly share code, notes, and snippets.

View birolkuyumcu's full-sized avatar

Birol Kuyumcu birolkuyumcu

View GitHub Profile

How to create a custom Caffe layer in Python?

This tutorial will guide through the steps to create a simple custom layer for Caffe using python. By the end of it, there are some examples of custom layers.

###- Why would I want to do that? Usually you would create a custom layer to implement a funcionality that isn't available in Caffe, tuning it for your requirements.

###- What will I need? Probably just Python and Caffe instaled.

###- Is there any downside?