Questions tagged [mlpack]

mlpack is set of tools for machine learning written in C++, and designed to be scalable, fast, and extensible. mlpack has an easy-to-use API which enables novice users to implement machine learning.

Homepage

67 questions
0
votes
2 answers

Has anyone installed the mlpack library for windows 10?

I have tried following various steps to install the mlpack library for windows 10, but was not successful. If any of you were able to please forward the link to the steps followed.
Aaquila
  • 7
  • 2
0
votes
0 answers

import mlpack fails in python

I am trying to use mlpack in python scripts. I just installed the mlpack package from source into my directory /home/glassjawed/local/ and glassjawed@Y9Acer:~$ ls local/lib | grep…
Kashif
  • 3,063
  • 6
  • 29
  • 45
0
votes
2 answers

How to compile knn in pyMIC for Xeon Phi

I am trying to compile a modified mlpack knn_example.cpp example for the Xeon Phi Knights Corner. It uses mlpack library and also the Armadillo c++ libraries. It seems to compile successfully however when I run the pymic code, it throws the…
KKel
  • 61
  • 6
0
votes
2 answers

Performing MNIST example with mlpack

I'd like to do an simple dnn example for getting known with mlpack. The simple example is to train a dnn with the MNist Digits - the classical ml-hello world case :-) I managed to preparate all images using opencv-filters - the result is…
Jan021981
  • 521
  • 3
  • 28
0
votes
2 answers

aarch64-poky-linux-gcc: error: : No such file or directory

I am trying to include mlpack to my yocto build. Without enabling the python bindings my recipe bakes successfully. But while building the python bindings I get the following error: aarch64-poky-linux-gcc -march=armv8-a…
vivi
  • 21
  • 2
  • 5
0
votes
0 answers

Disbling Visual C++ compiler while using Intel in Visual Studio

I am trying to build mlpack in Visual Studio 2010 using Intel compiler. There are many statements like #if defined(_MSC_VER) #if (_MSC_VER < 1700) #error "*** Need a newer compiler ***" #endif This is throwing an error. However, this…
Sashank
  • 590
  • 7
  • 22
0
votes
1 answer

Cmake cannot find boost library directory

I am trying to install mlpack on Visual Studio 2010 using Intel Compiler and I'm following this link - https://keon.io/mlpack/mlpack-on-windows/ I am trying to run certain CMake command and it is failing with the error -…
Sashank
  • 590
  • 7
  • 22
0
votes
2 answers

linking a Visual studio project to a library

I built mlpack (an additional library for c++) using Visual Studio 2015. All the library files are inside the build folder now when Iam trying to compile the following code in visual studio after adding the mlpack location in additional…
sam
  • 175
  • 1
  • 1
  • 10
0
votes
2 answers

When I include a shared library, my executable is looking for two versions of it

When I make my program with -larmadillo, I get an executable which wants two versions of it: $ ldd ./a.out | grep armadillo $ libarmadillo.so.7 => /usr/lib/x86_64-linux-gnu/libarmadillo.so.7 (0x00007fd5e29a0000) $ libarmadillo.so.4 => not…
ricky116
  • 744
  • 8
  • 21
0
votes
1 answer

CMake Error "No C++11 compiler available!" with MS VS 2015

I'm trying to get mlpack-2.0.1 to work on Visual Studio 14 2015 (I'm using Windows) but have had no success and I've been trying for hours but keep getting the same error: "No C++11 compiler available!" Additionally, I've read a handful of other…
Jeremy
  • 31
  • 1
  • 5
0
votes
0 answers

Can't Include LibXML2 Files in a CMake C++ Project (using QtCreator IDE)

I'm working on a Cmake based C++ project in QtCreator. I am trying to use mlpack in my project, but as soon as I include the line #include to my only source file, I get an error pertaining to some libxml files that are included by…
shinvu
  • 601
  • 2
  • 7
  • 23
0
votes
1 answer

how to build mlpack on window

I found this machine learning library in this link: http://www.mlpack.org/doxygen.php?doc=build.html It guides building on linux. Do anyone show me how to build it on window please!
Khuong
  • 3
  • 3
0
votes
0 answers

mlpack: Lasso regression that takes in pointer to function

from http://www.mlpack.org/doxygen.php?doc=classmlpack_1_1regression_1_1LARS.html I'm trying to use void mlpack::regression::LARS::Regress but the function itself only takes in some &gramMatrix as input. If I want to pass in function to compute…
chia
  • 9
  • 1
0
votes
1 answer

can not find when setup mlpack

I tried to install mlpack in cygwin and I have already installed armadillo, but I encountered following problems: After running cmake ../ I run the make command and here is the process: $ make Scanning dependencies of target mlpack_headers Moving…
Liyu Chen
  • 1
  • 1
  • 1
0
votes
1 answer

Boost_program_option linker error even "boost_program_options" exist

I have defined boost_program_options in qmake file . > CONFIG(debug, debug|release) { > LIBS += -L"C:\boost_1_55_0\stage\lib" -lboost_program_options-mgw48-mt-d-1_55 -lboost_system-mgw48-mt-d-1_55 -lboost_thread-mgw48-mt-d-1_55 } …
Kadir Erdem Demir
  • 3,531
  • 3
  • 28
  • 39