From 4958eb63a0f0760e014fdde2d7f245a75e9922fc Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Tue, 1 May 2018 16:50:20 +0900 Subject: [PATCH] start kmean_clustering sample --- Mapping/kmean_clustering/kmean_clustering.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Mapping/kmean_clustering/kmean_clustering.py diff --git a/Mapping/kmean_clustering/kmean_clustering.py b/Mapping/kmean_clustering/kmean_clustering.py new file mode 100644 index 00000000..fc3a55cf --- /dev/null +++ b/Mapping/kmean_clustering/kmean_clustering.py @@ -0,0 +1,16 @@ +""" + +Object clustering with k-mean algorithm + + +author: Atsushi Sakai (@Atsushi_twi) + +""" + + +def main(): + print(__file__ + " start!!") + + +if __name__ == '__main__': + main()