7

Is DLIB a good open source library for developing my own machine learning algorithms in C++?

How about other ones, such as libSVM, SHOGUN?

valiano
  • 16,433
  • 7
  • 64
  • 79
user297850
  • 7,705
  • 17
  • 54
  • 76
  • All that really depends on what you are trying to do. And it seems that you are looking to use existing algorithms not invent your own which I do not recommend. – Steve Severance Jan 23 '11 at 01:09
  • 2
    @Steve: Avoid the NIH syndrome :-) – Sid Kshatriya Apr 29 '11 at 20:27
  • 2
    I recommend starting with existing algorithms as a learning exercise and if they aren't good enough, inventing your own - "standing on the shoulders of giants..." –  May 08 '11 at 20:21
  • I agree with Andrew S. Maybe you should check out http://en.wikipedia.org/wiki/Orange_%28software%29 That way you can compare performance of your algorithm against other ones that are implemented in Orange – NoSenseEtAl May 24 '11 at 12:21

1 Answers1

5

A good source for information about machine learning open source software is mloss.org, where you can find 20 projects that use C++. Study the descriptions and tags to select one that fits your needs.

hmuelner
  • 8,093
  • 1
  • 28
  • 39