https://github.com/cschen1205/cs-ica
Independent Component Analysis algorithm for solving linear noise less "cocktail party problem"
https://github.com/cschen1205/cs-ica
feature-engineering ica independent-component-analysis
Last synced: 3 months ago
JSON representation
Independent Component Analysis algorithm for solving linear noise less "cocktail party problem"
- Host: GitHub
- URL: https://github.com/cschen1205/cs-ica
- Owner: cschen1205
- License: mit
- Created: 2017-05-07T00:53:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-28T02:27:07.000Z (over 7 years ago)
- Last Synced: 2025-07-07T17:50:47.036Z (3 months ago)
- Topics: feature-engineering, ica, independent-component-analysis
- Language: C#
- Size: 3.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cs-ica
Independent Component Analysis algorithm for solving linear noise less "cocktail party problem"
# Install
```bash
Install-Package cs-ica
```# Usage
The library only requires one line of code to split a single source into two separate sources:
```cs
List single_source = GetData();
List source1;
List source2;
ICA.LinearNoiseLessICA.solve(single_source, out source1, out source2);
```