2020-10-27
Machine Learning A-Z K-means Custering
#Import the libraries
import tensorflow as tf
import matplotlib.pyplot as plt
import pandas as pd
import numpy as np
# Importing the dataset
dataset = pd.read_csv('Mall_Customers.csv')
X = dataset.iloc[:, 3:5].valu



