Skip to content

Commit 55ef22c

Browse files
committed
ICA: fix typo (closes #139)
1 parent bc6c530 commit 55ef22c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

muon/_core/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ def ica(
13771377
from sklearn.decomposition import FastICA
13781378

13791379
ica = FastICA(random_state=random_state, n_components=n_components, **kwargs)
1380-
x_ica = ica.fit_transcrotm(data.obsm[basis])
1380+
x_ica = ica.fit_transform(data.obsm[basis])
13811381

13821382
if scale:
13831383
x_ica /= x_ica.std(axis=0)

0 commit comments

Comments
 (0)