Mlpack – a scalable C++ machine learning library
1–9 of 9 posts
Re: Mlpack – a scalable C++ machine learning library
#2https://summerofcode.withgoogle.com/organizations/5376684740...
See also the project's github: https://github.com/mlpack/mlpack
Re: Mlpack – a scalable C++ machine learning library
#3Re: Mlpack – a scalable C++ machine learning library
#4However, the benchmark looks a bit confusing, how does it compare against some more popular libraries like tensorflow?
Also, while on black document is not very good for the eyes :)
Re: Mlpack – a scalable C++ machine learning library
#5How does Mlpack relate to tensorflow?
Re: Mlpack – a scalable C++ machine learning library
#6How does Mlpack relate to tensorflow?
Tensorflow is aimed at ML architectures that are fully differentiable (just close your eyes and say "deep learning.") and performs automatic differentiation (you just define the architecture, tensorflow figures out how to update parameters). MLpack is less flexible but provides robust implementations of several class ML algorithms that you wouldn't necessarily want to write in Tensorflow, even though you probably cou…
Re: Mlpack – a scalable C++ machine learning library
#7Re: Mlpack – a scalable C++ machine learning library
#8How does Mlpack relate to tensorflow?
Tensorflow is aimed at ML architectures that are fully differentiable (just close your eyes and say "deep learning.") and performs automatic differentiation (you just define the architecture, tensorflow figures out how to update parameters). MLpack is less flexible but provides robust implementations of several class ML algorithms that you wouldn't necessarily want to write in Tensorflow, even though you probably cou…
Re: Mlpack – a scalable C++ machine learning library
#9Is there an example of multiclass text classification with mlpack? I couldn't find any.