Kaggle: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
No edit summary
Line 19: Line 19:


https://drive.google.com/open?id=0ByjOj5sb0Oj_UzVxdGpkcTNPV0E
https://drive.google.com/open?id=0ByjOj5sb0Oj_UzVxdGpkcTNPV0E
Here is a python function to load a file from the matplotlib file format.
<nowiki>
from scipy.io import loadmat
def load(fn):
    return loadmat(fn, struct_as_record=False)['dataStruct'][0, 0].data
</nowiki>

Revision as of 20:12, 7 September 2016

We're doing this kaggle comp

https://www.kaggle.com/c/melbourne-university-seizure-prediction/data

Papers

Random papers from google searching "machine learning seizure detection"

Application of Machine Learning To Epileptic Seizure Detection

Ali Shoeb, John Guttag Massachusetts Institute of Technology, 77 Massachusetts Avenue, Cambridge, Massachusetts, 02139

https://drive.google.com/open?id=0ByjOj5sb0Oj_SGduRjduNVdfX1k

EEG-based neonatal seizure detection with Support Vector Machines

A. Temko a,*, E. Thomas a, W. Marnane a,b, G. Lightbody a,b, G. Boylan a,c a Neonatal Brain Research Group, University College Cork, Ireland b Department of Electrical and Electronic Engineering, University College Cork, Ireland c Department of Paediatrics and Child Health, University College Cork, Ireland

https://drive.google.com/open?id=0ByjOj5sb0Oj_UzVxdGpkcTNPV0E

Here is a python function to load a file from the matplotlib file format.


from scipy.io import loadmat

def load(fn):
    return loadmat(fn, struct_as_record=False)['dataStruct'][0, 0].data