0

Which libraries/implementations for Siamese networks do exist? I am most interested about R, C, and C++ implementations.

user31264
  • 1,694
  • 10
  • 14
  • 1
    Questions asking for software, libraries, or code are off topic here. – gung - Reinstate Monica Feb 17 '17 at 18:51
  • @gung - no. There is no sentence "Questions asking for software, libraries, or code are off topic here" in http://stats.stackexchange.com/help/on-topic . If my question is off-topic, why http://stats.stackexchange.com/questions/41771/r-libraries-for-deep-learning is on-topic? – user31264 Feb 17 '17 at 21:00
  • CV is a site for questions about *statistics* (ML, etc.). Asking for libraries is not a question about NNs, but a question about R implementations, which is not the same thing. You are right that the linked Q should be closed as well; that was posted when the sites policies were looser & not as clear. – gung - Reinstate Monica Feb 17 '17 at 21:15

1 Answers1

1

Caffe is written in C++ and allows you to implement a Siamese network:

http://caffe.berkeleyvision.org/gathered/examples/siamese.html

For R deep learning packages see this question:

R libraries for deep learning

They probably allow you to do what you want to do.

Lucas
  • 5,692
  • 29
  • 39