Skip to content

Commit c219f4f

Browse files
committed
Updated tsne.py
1 parent aab6715 commit c219f4f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

machine_learning/tsne.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@ def main() -> None:
154154
Run t-SNE on Iris dataset and display the first 5 embeddings.
155155
156156
Example:
157-
>>> main() # runs without errors
157+
>>> main() # doctest: +ELLIPSIS
158+
t-SNE embedding (first 5 points):
159+
[[-...
158160
"""
159161
data_x, _ = collect_dataset()
160162
y_emb = apply_tsne(data_x, n_components=2, n_iter=300)

0 commit comments

Comments
 (0)