updating examples

nix
Pierre Alexandre Tremblay 6 years ago
parent 82f3efe98d
commit e89df42917

@ -30,8 +30,8 @@ Routine{
/*** KMEANS ***/ /*** KMEANS ***/
~kmeans = FluidKMeans.new(s) ~kmeans = FluidKMeans.new(s)
~nClusters = 4; //play with this ~nClusters = 2; //play with this
~kmeans.fit(~ds,~nClusters,100,action:{"Done fitting".postln}) ~kmeans.fit(~ds,~nClusters,100,action:{|x| "Done fitting with these number of items per cluster ".post;x.postln;})
( (
Routine{ Routine{
@ -50,12 +50,9 @@ Routine{
( (
Routine{ Routine{
var n; var n;
~labels.size({|x| n = x.asInteger;}); ~labels.size({|x|
n.postln; x.asInteger.do{|i|
n.do{|i|
~labels.getLabel(i.asString,action: {|l|("Label for" + i ++ ":" + l).postln}); ~labels.getLabel(i.asString,action: {|l|("Label for" + i ++ ":" + l).postln});
} };});
}.play }.play
) )

@ -1,5 +1,5 @@
s.reboot s.reboot
~ds = FluidDataSet.new(s,\simple1data,1) ~ds = FluidDataSet.new(s,\simple1data)
~point = Buffer.alloc(s,1,1) ~point = Buffer.alloc(s,1,1)
( (
Routine{ Routine{
@ -34,7 +34,8 @@ Routine{
~kmeans = FluidKMeans.new(s) ~kmeans = FluidKMeans.new(s)
~nClusters = 2; //play with this ~nClusters = 2; //play with this
~kmeans.fit(~ds,~nClusters,100,action:{"Done fitting".postln}) ~kmeans.fit(~ds,~nClusters,100,action:{|x| "Done fitting with these number of items per cluster ".post;x.postln;})
( (
Routine{ Routine{
10.do{|i| 10.do{|i|
@ -48,14 +49,13 @@ Routine{
~labels = FluidLabelSet(s,\simple1label); ~labels = FluidLabelSet(s,\simple1label);
~kmeans.predict(~ds,~labels, {|x| ("Size of each cluster" + x).postln}) ~kmeans.predict(~ds,~labels, {|x| ("Size of each cluster" + x).postln})
(
s(
Routine{ Routine{
var n; var n;
~labels.size({|x| n = x.asInt}); ~labels.size({|x|
n.asInt.do{|i| x.asInteger.do{|i|
~labels.getLabel(i.asString,action: {|l|("Label for" + i ++ ":" + l).postln}); ~labels.getLabel(i.asString,action: {|l|("Label for" + i ++ ":" + l).postln});
} };});
}.play }.play
) )

Loading…
Cancel
Save