File: mpi_kmeans.1

package info (click to toggle)
libmpikmeans 1.5%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 344 kB
  • ctags: 355
  • sloc: cpp: 1,673; makefile: 151; python: 56; sh: 5
file content (44 lines) | stat: -rw-r--r-- 1,328 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.\"                                      Hey, EMACS: -*- nroff -*-
.TH MPI_KMEANS 1 "April 11, 2011"
.SH NAME
mpi_kmeans \- K-Means clustering tool
.SH SYNOPSIS
.B mpi_kmeans
.RI [ options ]
.SH DESCRIPTION
\fBmpi_kmeans\fP is a program that uses k-means clustering to produce a list of
cluster centers. The resulting data can be used by \fBmpi_assign\fR(1) to assign
points to those cluster centers.
.SH OPTIONS
A summary of options is included below.
.SS "Generic Options:"
.TP
\fB\-\-help\fR
Produce help message
.SS "Input/Output Options:"
.TP
\fB\-\-data\fR \fIfile\fR
Training file, one datum per line (default: "data.txt")
.TP
\fB\-\-output\fR \fIfile\fR
Output file, one cluster center per line (default: "output.txt")
.SS "K-Means Options:"
.TP
\fB\-\-k\fR \fInum\fR
Number of clusters to generate (default: 100)
.TP
\fB\-\-restarts\fR \fInum\fR
Number of k\-means restarts (default: 0 = single run)
.TP
\fB\-\-maxiter\fR \fInum\fR
Maximum number of k\-means iterations (default: 0 = infinity)
.SH EXAMPLES
.IP
mpi_kmeans \-\-k 2 \-\-data example.txt \-\-output clusters.txt
.SH SEE ALSO
.BR mpi_assign (1)
.SH AUTHOR
\fBmpi_kmeans\fR was written by Peter Gehler <peter.gehler@tuebingen.mpg.de>.
.PP
This manual page was written by Christian Kastner <debian@kvr.at>,
for the Debian project (and may be used by others).