March 2019
Intermediate to advanced
642 pages
22h 54m
English
Let's see how we can perform a blind source separation:
import numpy as np import matplotlib.pyplot as plt from sklearn.decomposition import PCA, FastICA
# Load data input_file = 'mixture_of_signals.txt' X = np.loadtxt(input_file)
# Compute ICA ica = FastICA(n_components=4)
# Reconstruct the signals signals_ica = ica.fit_transform(X)
# Get estimated mixing matrix mixing_mat ...
Read now
Unlock full access