https://github.com/deric/clueminer-demo
https://github.com/deric/clueminer-demo
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/deric/clueminer-demo
- Owner: deric
- License: gpl-3.0
- Created: 2015-04-30T07:44:51.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-04-09T13:45:20.000Z (about 7 years ago)
- Last Synced: 2025-04-04T10:33:28.597Z (about 1 year ago)
- Language: Java
- Size: 1020 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Clustering Demo
Simple showcase of clustering algorithms on 2D datasets.
This project depends on modules from Clueminer repository (not yet on Maven central).
## How to run
Clone Clueminer repo if you don't have it yet. This demo should be in same directory.
directory structure:
```
clueminer/
clueminer-demo/
clustering-benchmark/
```
that means following sequence of commands:
```
git clone https://github.com/deric/clueminer.git
git clone https://github.com/deric/clueminer-demo.git
git clone https://github.com/deric/clustering-benchmark.git
cd clustering-benchmark
mvn install
cd ../clueminer-demo
mvn install
```
and run compiled JAR. Note that dependent libraries will be placed in `targer/libs`.
On Linux you can use the Bash script:
```
$ ./run
```
Single JAR compilation:
```
$ mvn assembly:assembly
```