├── .gitignore ├── Licence.txt ├── README.md ├── classif.py ├── cross_valid.py ├── data └── README.md ├── parameters_Leak.yaml ├── parameters_noLeak.yaml ├── prediction.py ├── preproc ├── metadata.csv └── preproc.py ├── results ├── BagsNumbers.png ├── ElecNumbers.png ├── submission_Leak.csv └── submission_noLeak.csv └── riemann ├── __init__.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/.gitignore -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/Licence.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/README.md -------------------------------------------------------------------------------- /classif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/classif.py -------------------------------------------------------------------------------- /cross_valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/cross_valid.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/data/README.md -------------------------------------------------------------------------------- /parameters_Leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/parameters_Leak.yaml -------------------------------------------------------------------------------- /parameters_noLeak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/parameters_noLeak.yaml -------------------------------------------------------------------------------- /prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/prediction.py -------------------------------------------------------------------------------- /preproc/metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/preproc/metadata.csv -------------------------------------------------------------------------------- /preproc/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/preproc/preproc.py -------------------------------------------------------------------------------- /results/BagsNumbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/results/BagsNumbers.png -------------------------------------------------------------------------------- /results/ElecNumbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/results/ElecNumbers.png -------------------------------------------------------------------------------- /results/submission_Leak.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/results/submission_Leak.csv -------------------------------------------------------------------------------- /results/submission_noLeak.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/results/submission_noLeak.csv -------------------------------------------------------------------------------- /riemann/__init__.py: -------------------------------------------------------------------------------- 1 | from utils import * -------------------------------------------------------------------------------- /riemann/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrebarachant/bci-challenge-ner-2015/HEAD/riemann/utils.py --------------------------------------------------------------------------------