diff --git a/stratosphere-examples/stratosphere-java-examples/src/main/java/eu/stratosphere/example/java/clustering/KMeans.java b/stratosphere-examples/stratosphere-java-examples/src/main/java/eu/stratosphere/example/java/clustering/KMeans.java index bbf5bf2f2d7373ab6d73e732d5f0218b2b2748c6..fc64b6500a7321384564bf8a98c18a01d468cbdf 100644 --- a/stratosphere-examples/stratosphere-java-examples/src/main/java/eu/stratosphere/example/java/clustering/KMeans.java +++ b/stratosphere-examples/stratosphere-java-examples/src/main/java/eu/stratosphere/example/java/clustering/KMeans.java @@ -57,6 +57,10 @@ import eu.stratosphere.example.java.clustering.util.KMeansData; * * *

+ * Usage: KMeans <points path> <centers path> <result path> <num iterations>
+ * If no parameters are provided, the program is run with default data from {@link KMeansData} and 10 iterations. + * + *

* This example shows how to use: *

* *

+ * Usage: ConnectedComponents <vertices path> <edges path> <result path> <max number of iterations>
+ * If no parameters are provided, the program is run with default data from {@link ConnectedComponentsData} and 10 iterations. + * + *

* This example shows how to use: *