This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i, k in enumerate([2, 3, 4]): | |
| fig, (ax1, ax2) = plt.subplots(1, 2) | |
| fig.set_size_inches(18, 7) | |
| # Run the Kmeans algorithm | |
| km = KMeans(n_clusters=k) | |
| labels = km.fit_predict(X_std) | |
| centroids = km.cluster_centers_ | |
| # Get silhouette samples |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run the Kmeans algorithm and get the index of data points clusters | |
| sse = [] | |
| list_k = list(range(1, 10)) | |
| for k in list_k: | |
| km = KMeans(n_clusters=k) | |
| km.fit(X_std) | |
| sse.append(km.inertia_) | |
| # Plot sse against k |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Read the image | |
| img = imread('images/my_image.jpg') | |
| img_size = img.shape | |
| # Reshape it to be 2-dimension | |
| X = img.reshape(img_size[0] * img_size[1], img_size[2]) | |
| # Run the Kmeans algorithm | |
| km = KMeans(n_clusters=30) | |
| km.fit(X) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| n_iter = 9 | |
| fig, ax = plt.subplots(3, 3, figsize=(16, 16)) | |
| ax = np.ravel(ax) | |
| centers = [] | |
| for i in range(n_iter): | |
| # Run local implementation of kmeans | |
| km = Kmeans(n_clusters=2, | |
| max_iter=3, | |
| random_state=np.random.randint(0, 1000, size=1)) | |
| km.fit(X_std) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Standardize the data | |
| X_std = StandardScaler().fit_transform(df) | |
| # Run local implementation of kmeans | |
| km = Kmeans(n_clusters=2, max_iter=100) | |
| km.fit(X_std) | |
| centroids = km.centroids | |
| # Plot the clustered data | |
| fig, ax = plt.subplots(figsize=(6, 6)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Modules | |
| import matplotlib.pyplot as plt | |
| from matplotlib.image import imread | |
| import pandas as pd | |
| import seaborn as sns | |
| from sklearn.datasets.samples_generator import (make_blobs, | |
| make_circles, | |
| make_moons) | |
| from sklearn.cluster import KMeans, SpectralClustering | |
| from sklearn.preprocessing import StandardScaler |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| from numpy.linalg import norm | |
| class Kmeans: | |
| '''Implementing Kmeans algorithm.''' | |
| def __init__(self, n_clusters, max_iter=100, random_state=123): | |
| self.n_clusters = n_clusters | |
| self.max_iter = max_iter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Load names | |
| data = open("../data/names.txt", "r").read() | |
| # Convert characters to lower case | |
| data = data.lower() | |
| # Construct vocabulary using unique characters, sort it in ascending order, | |
| # then construct two dictionaries that maps character to index and index to | |
| # characters. | |
| chars = list(sorted(set(data))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def model( | |
| file_path, chars_to_idx, idx_to_chars, hidden_layer_size, vocab_size, | |
| num_epochs=10, learning_rate=0.01): | |
| """Implements RNN to generate characters.""" | |
| # Get the data | |
| with open(file_path) as f: | |
| data = f.readlines() | |
| examples = [x.lower().strip() for x in data] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def sample(parameters, idx_to_chars, chars_to_idx, n): | |
| """ | |
| Implements sampling of a squence of n characters characters length. | |
| The sampling will be based on the probability distribution output of RNN. | |
| """ | |
| # Retrienve parameters, shapes, and vocab size | |
| Whh, Wxh, b = parameters["Whh"], parameters["Wxh"], parameters["b"] | |
| Why, c = parameters["Why"], parameters["c"] | |
| n_h, n_x = Wxh.shape |