Skip to content

Commit 9e97310

Browse files
committed
isort fix
1 parent 73f8b64 commit 9e97310

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

machine_learning/t_stochastic_neighbour_embedding.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,7 @@ def main() -> None:
101101
import matplotlib.pyplot as plt
102102

103103
plt.figure(figsize=(7, 5))
104-
scatter = plt.scatter(
105-
embedding[:, 0], embedding[:, 1], c=labels, cmap="viridis"
106-
)
104+
scatter = plt.scatter(embedding[:, 0], embedding[:, 1], c=labels, cmap="viridis")
107105
plt.title("t-SNE Visualization of the Iris Dataset")
108106
plt.xlabel("Dimension 1")
109107
plt.ylabel("Dimension 2")

0 commit comments

Comments
 (0)