X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=clueless-kmeans.git;a=blobdiff_plain;f=test.sh;h=64b69ee91bd7031745288cc650f758b5b7660126;hp=d89deb1d8d1bc285504bce92476f83766a840403;hb=HEAD;hpb=d0c772da97d583a1b4d315c2c4dcf4fd7919c59f diff --git a/test.sh b/test.sh index d89deb1..64b69ee 100755 --- a/test.sh +++ b/test.sh @@ -1,19 +1,18 @@ #!/bin/bash - -# clueless-kmean is a variant of k-mean which enforces balanced +# clueless-kmeans is a variant of k-means which enforces balanced # distribution of classes in every cluster # # Copyright (c) 2013 Idiap Research Institute, http://www.idiap.ch/ # Written by Francois Fleuret # -# This file is part of clueless-kmean. +# This file is part of clueless-kmeans. # -# clueless-kmean is free software: you can redistribute it and/or +# clueless-kmeans is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License # version 3 as published by the Free Software Foundation. # -# clueless-kmean is distributed in the hope that it will be useful, +# clueless-kmeans is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. @@ -23,17 +22,14 @@ set -e -make -j -k - -./clueless-kmean +function make_graph () { + CLUSTER1=($(grep ^0 clusters.dat)) + CLUSTER2=($(grep ^1 clusters.dat)) + CLUSTER3=($(grep ^2 clusters.dat)) -CLUSTER1=($(grep ^0 clusters.dat)) -CLUSTER2=($(grep ^1 clusters.dat)) -CLUSTER3=($(grep ^2 clusters.dat)) - -gnuplot <