Clueminer is a platform for interactive data-mining with special focus on clustering algorithms.
Prerequisites:
-
git
-
Java (7 or newer)
-
Maven
git clone git://github.com/deric/clueminer.git cd clueminer git submodule init git submodule update mvn clean install
-
Once build you can run Clueminer via Maven
cd modules/application
mvn nbm:cluster-app nbm:run-platform
- or use generated bin file
bash modules/application/target/clueminer/bin/clueminer
- open the clueminer directory (which is a maven module) -- this module is called
clueminer-parent
- from dependent modules of
clueminer-parent
openclueminer-app
- execute "Build with dependencies"
- now you can run the main application (run module
clueminer-app
)
In application/src/main/resources/clueminer.conf
adjust Java options:
default_options="--branding clueminer -J-Xms24m -J-Xmx2048m"
Note: increasing heap size J-Xmx
to values bigger than is your actual physical RAM will
cause serious preformance issues!
On Unix systems you can find out your memory size with this command:
echo $(( $(awk '/MemTotal/{print $2}' /proc/meminfo) >> 10 ))m
- click on fork button on github
- add upstream repository
$ git remote add upstream https://github.com/deric/clueminer.git
- from time to time merge with upstream
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
Benchmarks of clustering algorithms are located in modules/clustering-benchmark
In order to run benchmarks build an asssembly with Maven:
$ cd modules/clustering-benchmark
$ mvn assembly:assembly
and run benchmarks (might be computationally expensive):
$ java -jar target/*-jar-with-dependencies.jar
For OpenGL visualizations you'll need native extensions
jzy3d is using jogl library which has native bindings:
sudo apt-get install libjogl-java