Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created June 10, 2021 13:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save amankharwal/64e199bd387dcc804e904cf8f04567d0 to your computer and use it in GitHub Desktop.
from sklearn.decomposition import FastICA
ica = FastICA(n_components=256,
max_iter=500,
random_state=1000)
ica.fit(x)
print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment