Skip to content

Commit 65cb388

Browse files
committed
fix: back to n_iter
1 parent 6d1209c commit 65cb388

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

oodeel/eval/plots/features.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"TSNE": {
4040
"name": "t-SNE",
4141
"class": TSNE,
42-
"default_kwargs": dict(perplexity=30.0, max_iter=800, random_state=0),
42+
"default_kwargs": dict(perplexity=30.0, n_iter=800, random_state=0),
4343
},
4444
"PCA": {"name": "PCA", "class": PCA, "default_kwargs": dict()},
4545
}

oodeel/eval/plots/plotly.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"TSNE": {
3939
"name": "t-SNE",
4040
"class": TSNE,
41-
"default_kwargs": dict(perplexity=30.0, max_iter=800, random_state=0),
41+
"default_kwargs": dict(perplexity=30.0, n_iter=800, random_state=0),
4242
},
4343
"PCA": {"name": "PCA", "class": PCA, "default_kwargs": dict()},
4444
}

0 commit comments

Comments
 (0)