> Just to confirm is metric 1 (simple accuracy) is unhealthy vs healthy?
>
Not quite.
> Metric 3: macro accuracy / precision / recall / f1
> [1dAVb] acc / prec / rec / f1 = 0.9927 / 0.8667 / 0.9286 / 0.8966
> [RBBB] acc / prec / rec / f1 = 0.9952 / 0.8947 / 1.0000 / 0.9444
> [LBBB] acc / prec / rec / f1 = 1.0000 / 1.0000 / 1.0000 / 1.0000
> [SB] acc / prec / rec / f1 = 0.9952 / 0.8333 / 0.9375 / 0.8824
> [AF] acc / prec / rec / f1 = 0.9964 / 1.0000 / 0.7692 / 0.8696
> [ST] acc / prec / rec / f1 = 0.9964 / 0.9474 / 0.9730 / 0.9600
> macro acc / prec / rec / f1 = 0.9960 / 0.9237 / 0.9347 / 0.9255
There are six possible outcomes for each slide. A slide can have any
combination of these six things. So your system does this:
.dat file machine
8-channel => learning => [0,1,0,1,0,1]
16-bit samples magic 6D vector of
300 Hz sample freq outcomes
2200 samples/channel
This is not a two-way decision. There are 2^6 possible outcomes.
I sorted the data into healthy (all vectors are [0,0,0,0,0,0])
and unhealthy (all vectors have a least one "1") just to make it a
little easier to understand the data. For training and dev testing you
really should pool all the data into one file.
For evaluation, I will give you the .dat files, but not the answers. You
will give me a spreadsheet of vectors that is in the same format as the
scoring examples:
nedc_130_[1]: head ../evaluation/tests/ref_tnmg.csv
1dAVb,RBBB,LBBB,SB,AF,ST
0,0,0,0,0,0
0,0,1,0,0,0
0,0,0,0,0,0
0,0,0,0,0,0
0,0,0,0,0,0
0,0,0,0,0,0
0,0,0,0,0,0
0,0,0,0,0,0
0,0,0,0,0,0
-Joe