Questions tagged [elki]

ELKI is an open source data mining software with the focus on cluster analysis and outlier detection. It uses index structures for accelerating these algorithms.

ELKI is an open source data mining software with the focus on cluster analysis and outlier detection. In contrast to most other tools, it has support for index structures.

164 questions
0
votes
1 answer

ELKI how to increase the precision?

I am using ELKI mini GUI for clustering my data points. I have some 1300 GPS data points which I would like to cluster my GPS points (DBSCAN and OPTICS). As an input file for dbc.in I am using a csv file with only 2 columns (X,Y). The problem is, my…
user26161
  • 131
  • 1
  • 1
  • 7
0
votes
1 answer

Why does ELKI need db.in file in addition to distance matrix? Also what should db.in file contain?

I tried to follow this tutorial on using ELKI with pre-computed distances for clustering. http://elki.dbs.ifi.lmu.de/wiki/HowTo/PrecomputedDistances I used the following set of command line options: -dbc.filter FixedDBIDsFilter -dbc.startid 0…
jason
  • 3,471
  • 6
  • 30
  • 43
0
votes
2 answers

Very basic thing about ELKI

In fact, it seems to be so basic but Google did not give me an answers. I have downloaded ELKI, this gave me a .jar file. Now where do I put that archive/what do I do with it to be then able to use ELKI functions in my code? I know this has to be…
newnewbie
  • 993
  • 2
  • 11
  • 26
0
votes
1 answer

How to use ELKI for DBSCAN with precomputed distance matrix

I've a precomputed distance matrix for all the points in my database. I'm trying to invoke ELKI gui with following command: /usr/share/java/elki.jar -dbc.in xml_files.1000 -dbc.filter FixedDBIDsFilter …
Yantra
  • 287
  • 1
  • 4
  • 9
0
votes
1 answer

ELKI - input distance matrix

I'm trying to use ELKI for outlier detection ; I have my custom distance matrix and I'm trying to input it to ELKI to perform LOF (for example, in a first time). I try to follow http://elki.dbs.ifi.lmu.de/wiki/HowTo/PrecomputedDistances but it is…
Tilly
  • 427
  • 1
  • 4
  • 10
0
votes
1 answer

How to use ELKI clustering with LatLngDistanceFunction

The default settings for clustering seems to work fine- specifically the EuclideanDistanceFunction. However, I want to run the clustering with spatial data in the form of lng/lat and when I change the distance function elki crashes on me: Running:…
tcb
  • 55
  • 3
0
votes
1 answer

Running OPTICS algorithm on ELKI

I'm normally an R user (a beginning R user, but I'm starting to get the hang of it). However, I have heard positive things about ELKI--in particular, its speed. I came across this old post "How to group nearby latitude and longitude locations…
whistler
  • 876
  • 2
  • 15
  • 31
-1
votes
1 answer

how to install ELKI on windows?

I would like to install ELKI on windows and use clustering methods from python source code. The official documentation on the installation and use of their methods is not clear, which makes it difficult to handle their tool.
-1
votes
1 answer

KMeans usage in ELKI, comprehensive example

I'd like to use the KMeans clustering algorithm, for example, Elkan's kmeans from ELKI in Scala to get the centroids of the clusters. A comprehensive example would be great because it's a bit difficult to navigate through the ELKI documentation.
Artavazd Balayan
  • 2,353
  • 1
  • 16
  • 25
-1
votes
1 answer

What will be the distanceFunction parameter for elki DBSCAN?

DBSCAN dbscan = new DBSCAN(distanceFunction,0.5,10); dbscan.run(db); Here what should I put in distanceFunction
Pinku
  • 15
  • 5
-1
votes
2 answers

How to run algorithms within elki-tutorial-0.7.0.jar?

I can run elki's algorithm with command like this: java -jar elki-bundle-0.7.1.jar But how to run algorithms within elki-tutorial-0.7.0.jar?
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
-1
votes
2 answers

clustering geographic data in Java

My aim is to use a machine learning library so that I can cluster points (Lat/Long) and (x, y). I want to use an API that allows me to easily switch between different clustering algorithms. I started using Java-ML…
MTA
  • 739
  • 2
  • 9
  • 29
-1
votes
1 answer

How to generate multidimensional data with specific clustering properties?

In section 5.A of a research paper the researcher used the following synthetic datasets: GAUSS consisted of six Gaussian clusters with identity covariance, each with 500 points in five dimensions. Their means were randomly assigned a value from…
Ramseyl
  • 1
  • 2
-2
votes
1 answer

cluster external validation

I am using ELKI in order to perform location clustering with DBSCAN and OPTICS. My data set include 30 participants but it is not labeled but I do have pair of coordinates (e.g. home, work, etc) as each participant's frequent places. I want to know…
1 2 3
10
11