├── .gitignore ├── LICENSE ├── drew ├── chk_fxpath.m ├── freqs_to_bins.m ├── get_feature_params.m ├── get_features.m ├── get_nchans.m ├── get_nsegments.m ├── gogo_treebagger.m ├── isfile.m ├── load_and_classify_by_segment.m ├── load_features.m ├── load_segment.m ├── median_center.m ├── save_features.m ├── scores_interp.m └── train_and_compact.m ├── phil ├── bagged_svm.py ├── gogo_bagged_svm.m ├── kpca.py ├── load_features.py └── utils.py ├── qms ├── QT_6_freq_bands.m ├── QT_dyadic_spectrum.m ├── QT_eig_corr.m ├── QT_fractal_dimensions.m ├── QT_hjorth.m ├── QT_preictal_lassoglm_misc_rm2_11_select.m ├── QT_statistical_moments.m └── gogo_lassoglm.m ├── report.md ├── scripts ├── count_files.sh ├── csv_avg2.py ├── csv_cat.py ├── csv_cmp.py ├── csv_flip.py ├── csv_median_center.py └── csv_pnorm.py └── vgo.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | /drew/txt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /drew/chk_fxpath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/chk_fxpath.m -------------------------------------------------------------------------------- /drew/freqs_to_bins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/freqs_to_bins.m -------------------------------------------------------------------------------- /drew/get_feature_params.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/get_feature_params.m -------------------------------------------------------------------------------- /drew/get_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/get_features.m -------------------------------------------------------------------------------- /drew/get_nchans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/get_nchans.m -------------------------------------------------------------------------------- /drew/get_nsegments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/get_nsegments.m -------------------------------------------------------------------------------- /drew/gogo_treebagger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/gogo_treebagger.m -------------------------------------------------------------------------------- /drew/isfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/isfile.m -------------------------------------------------------------------------------- /drew/load_and_classify_by_segment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/load_and_classify_by_segment.m -------------------------------------------------------------------------------- /drew/load_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/load_features.m -------------------------------------------------------------------------------- /drew/load_segment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/load_segment.m -------------------------------------------------------------------------------- /drew/median_center.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/median_center.m -------------------------------------------------------------------------------- /drew/save_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/save_features.m -------------------------------------------------------------------------------- /drew/scores_interp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/scores_interp.m -------------------------------------------------------------------------------- /drew/train_and_compact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/drew/train_and_compact.m -------------------------------------------------------------------------------- /phil/bagged_svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/phil/bagged_svm.py -------------------------------------------------------------------------------- /phil/gogo_bagged_svm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/phil/gogo_bagged_svm.m -------------------------------------------------------------------------------- /phil/kpca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/phil/kpca.py -------------------------------------------------------------------------------- /phil/load_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/phil/load_features.py -------------------------------------------------------------------------------- /phil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/phil/utils.py -------------------------------------------------------------------------------- /qms/QT_6_freq_bands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_6_freq_bands.m -------------------------------------------------------------------------------- /qms/QT_dyadic_spectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_dyadic_spectrum.m -------------------------------------------------------------------------------- /qms/QT_eig_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_eig_corr.m -------------------------------------------------------------------------------- /qms/QT_fractal_dimensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_fractal_dimensions.m -------------------------------------------------------------------------------- /qms/QT_hjorth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_hjorth.m -------------------------------------------------------------------------------- /qms/QT_preictal_lassoglm_misc_rm2_11_select.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_preictal_lassoglm_misc_rm2_11_select.m -------------------------------------------------------------------------------- /qms/QT_statistical_moments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/QT_statistical_moments.m -------------------------------------------------------------------------------- /qms/gogo_lassoglm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/qms/gogo_lassoglm.m -------------------------------------------------------------------------------- /report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/report.md -------------------------------------------------------------------------------- /scripts/count_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/count_files.sh -------------------------------------------------------------------------------- /scripts/csv_avg2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/csv_avg2.py -------------------------------------------------------------------------------- /scripts/csv_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/csv_cat.py -------------------------------------------------------------------------------- /scripts/csv_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/csv_cmp.py -------------------------------------------------------------------------------- /scripts/csv_flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/csv_flip.py -------------------------------------------------------------------------------- /scripts/csv_median_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/csv_median_center.py -------------------------------------------------------------------------------- /scripts/csv_pnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/scripts/csv_pnorm.py -------------------------------------------------------------------------------- /vgo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewabbot/kaggle-seizure-prediction/HEAD/vgo.m --------------------------------------------------------------------------------