From e1d09044f2208cda7e7667cbcff978008997ed48 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Tue, 5 Feb 2019 01:09:35 -0500 Subject: remove cruft from main.c, add more to README.md --- README.md | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 0238485..3667e8c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,24 @@ KMeans Classifier Implementation -Example: - # generate test data with 1000 rows clustered around 3 points - ./gen-data.rb 1000 3 > example.dat +Examples: - # classify data, plot results as png - ./km-test kmeans example.dat example.png +Generate 1000 rows of test data, clustered around 3 points: + + # generate test data + ./gen-data.rb 1000 3 > example.dat + + # classify data, plot results as png + ./km-test kmeans example.dat example.png + +Run all tests and save best clustering in current directory along with +PNGs of results: + + for i in tests/*dat; do + # build paths + png_path=kmeans-$(basename ${i/dat/png}) + dst_path=kmeans-$(basename $i) + + # run test + echo $i + ./km-test kmeans $i $png_path > $dst_path + done -- cgit v1.2.3