Skip to content

Commit 9d99407

Browse files
committed
Update base.py
1 parent ba29e19 commit 9d99407

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sica/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def MSTD(X, m, M, step, n_runs, whiten=True, max_iter=2000, n_jobs=-1, ax=None):
746746

747747
# for i in range(m , M+step , step): #uncomment if you don't want to use tqdm (and comment the line below !)
748748
for i in tqdm(range(m, M + step, step)):
749-
s = StabilizedICA(i, max_iter, n_jobs)
749+
s = StabilizedICA(n_components = i, max_iter = max_iter, n_jobs = n_jobs)
750750
s.fit(X_w[:, :i], n_runs, whiten=False)
751751
mean.append(np.mean(s.stability_indexes_))
752752
ax[0].plot(range(1, len(s.stability_indexes_) + 1), s.stability_indexes_, "k")

0 commit comments

Comments
 (0)