GitXplorerGitXplorer
g

bigauss

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
e806e636578f10a9aa4803f5cf00fa1a5eaac773

doc fix

ggward committed a year ago
Unverified
2ae0b63ccd2724dd732b9d745eb0a65dd49a2e57

give credit where due

ggward committed a year ago
Unverified
6fa2b4d90229753a8a15e4aa3585f90e06aa56ff

initial commit

ggward committed a year ago
Verified
27d3447ef49b9baeaf3da7969de65e3b4ecb8503

Initial commit

ggward committed a year ago

README

The README file for this repository.

bigauss

Attempt to figure out whether multiple datasets are actually two Gaussian distributions.

Specifically: read an input file that looks EXACTLY like

Elapsed Times (ms)
STEP 1	STEP 2	STEP 3
179	112	68
164	60	154
167	61	125
...	...	...

into 3 lists of ints: [179, 164, 167, ...] and so forth.

Then does some NumPy and scikit-learn black magic to assess whether each list of ints fits two overlapping Gaussian distributions. Prints some numbers.

setup

One time only:

python3 -m venv venv
./venv/bin/pip install -r requirements.txt

run it

./bigauss.py <INFILE>