From c1200730e5cb674d5cde8d9fd62c9241eb4b56fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Conrad=20Gro=C3=9Fer?= Date: Thu, 4 Jul 2019 18:42:55 +0200 Subject: [PATCH] Removed unused imports --- src/algorithms/k-means/kmeansMkI.py | 1 - src/algorithms/k-means/kmeansMkI_2d.py | 5 ----- 2 files changed, 6 deletions(-) diff --git a/src/algorithms/k-means/kmeansMkI.py b/src/algorithms/k-means/kmeansMkI.py index aa001ec..e57b75a 100644 --- a/src/algorithms/k-means/kmeansMkI.py +++ b/src/algorithms/k-means/kmeansMkI.py @@ -16,7 +16,6 @@ # Importing the time for benchmarking purposes import time -from datetime import date # For random generation of numbers import randint from random import randint diff --git a/src/algorithms/k-means/kmeansMkI_2d.py b/src/algorithms/k-means/kmeansMkI_2d.py index ae57e43..14677cb 100644 --- a/src/algorithms/k-means/kmeansMkI_2d.py +++ b/src/algorithms/k-means/kmeansMkI_2d.py @@ -15,16 +15,11 @@ # Importing the time for benchmarking purposes import time -from datetime import date # For random generation of numbers import randint from random import randint -# Importing libary for multi core processing -import multiprocessing - # Importing libaries for easy plotting -import numpy as np import matplotlib.pyplot as plt # Importing own libaries Datamining Libary and Datamining Test