Visualisation of Machine Learning Algorithms
mldemos.epfl.ch
Visualisation of Machine Learning Algorithms
1–10 of 12 posts
Re: Visualisation of Machine Learning Algorithms
#2Re: Visualisation of Machine Learning Algorithms
#3Neat stuff, it is the beginning of machine notion of object permanence. Filling in the gaps and making educated guesses about what kind of function controls where a sequence originated from.
Re: Visualisation of Machine Learning Algorithms
#4edit: Yep. Clone the git repo, then run qmake, followed by make.
edit #2: Here is a patch I wrote to make the project compile under OpenCV 2.2, and Linux: https://gist.github.com/999061
Re: Visualisation of Machine Learning Algorithms
#5The install.sh and install_script.sh scripts are Mac-dependent. How would you compile this on Linux? Qmake? edit: Yep. Clone the git repo, then run qmake, followed by make. edit #2: Here is a patch I wrote to make the project compile under OpenCV 2.2, and Linux: https://gist.github.com/999061
edit: I'm still getting a Make error for cvSumPixels (unless I comment that check out);
sampleManager.cpp:(.text+0x1a06): undefined reference to `cvSumPixels'
Re: Visualisation of Machine Learning Algorithms
#6The install.sh and install_script.sh scripts are Mac-dependent. How would you compile this on Linux? Qmake? edit: Yep. Clone the git repo, then run qmake, followed by make. edit #2: Here is a patch I wrote to make the project compile under OpenCV 2.2, and Linux: https://gist.github.com/999061
Here's a patch that lets you compile with opencv2: https://gist.github.com/999061 . edit: I'm still getting a Make error for cvSumPixels (unless I comment that check out); sampleManager.cpp:(.text+0x1a06): undefined reference to `cvSumPixels'
Re: Visualisation of Machine Learning Algorithms
#7The install.sh and install_script.sh scripts are Mac-dependent. How would you compile this on Linux? Qmake? edit: Yep. Clone the git repo, then run qmake, followed by make. edit #2: Here is a patch I wrote to make the project compile under OpenCV 2.2, and Linux: https://gist.github.com/999061
Re: Visualisation of Machine Learning Algorithms
#8Earlier quoted context omitted.
Here's a patch that lets you compile with opencv2: https://gist.github.com/999061 . edit: I'm still getting a Make error for cvSumPixels (unless I comment that check out); sampleManager.cpp:(.text+0x1a06): undefined reference to `cvSumPixels'
you might need to add #include #include to get those I haven't gotten around to porting it to opencv2.2 so the patch is very welcome!
Here are my modifications; https://gist.github.com/999427
Re: Visualisation of Machine Learning Algorithms
#9Re: Visualisation of Machine Learning Algorithms
#10The install.sh and install_script.sh scripts are Mac-dependent. How would you compile this on Linux? Qmake? edit: Yep. Clone the git repo, then run qmake, followed by make. edit #2: Here is a patch I wrote to make the project compile under OpenCV 2.2, and Linux: https://gist.github.com/999061
Changed the LIBS line (in MLDemos/Makefile, _AlgorithmPlugins//Makefile., _IOPlugins//Makefile.) to:
LIBS = $(SUBLIBS) -L/usr/lib64 -L/usr/local/lib -lhighgui -lcv -lcxcore -lQtGui -lQtCore -lpthread
I suspect there's an easier way, but this at least allowed me to build and everything seems to work properly.