Ismail Marmoush
Ismail Marmoush

Reputation: 13600

c++ matrix template library need for neural networks computations

hi i'm implementing some neural network algorithms and i'll be needing a matrix library, I've looked and found that there are ones like ( boost::ublas ) , (blitz++), TNT... I need experts opinion which one is suitable for (simple , easy coding, high performance maybe )

Upvotes: 2

Views: 584

Answers (1)

Jerry Coffin
Jerry Coffin

Reputation: 490108

Absent some reason to do otherwise, I'd probably go with boost::ublas. To be honest, I doubt that most of the code in any of them is going to contribute a lot toward a neural network, so it probably won't make a huge difference which one you choose. They'll all just be acting as simple containers.

Upvotes: 2

Related Questions