028274e8f52c54b10d632a61ee19a6e64f7a90e6,examples/MotorImagery/two_class_motor_imagery.py,,,#,24
Before Change
results = context.evaluate(verbose=True)
for p in results.keys():
results [p].to_csv("../../results/MotorImagery/TwoClass/%s.csv2" % p)
results = pd.concat(results.values())
print(results.groupby("Pipeline").mean())
After Change
pipelines["MDM"] = make_pipeline(Covariances("oas"), MDM())
pipelines["TS"] = make_pipeline(Covariances("oas"), TSclassifier())
pipelines["CSP+LDA"] = make_pipeline(Covariances("oas"), CSP(8), LDA())
pipelines["CSP+SVM"] = make_pipeline(Covariances("oas"), CSP(8), SVC()) //
context = LeftRightImagery(pipelines, WithinSessionEvaluation(), datasets)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances Project Name: NeuroTechX/moabb
Commit Name: 028274e8f52c54b10d632a61ee19a6e64f7a90e6
Time: 2018-02-14
Author: vjayaram@danube.is.localnet
File Name: examples/MotorImagery/two_class_motor_imagery.py
Class Name:
Method Name:
Project Name: automl/SMAC3
Commit Name: bad4a34824f493e0dbd1fc7a0d0aa02a61382ae8
Time: 2017-05-15
Author: joshua.marben@neptun.uni-freiburg.de
File Name: examples/svm.py
Class Name:
Method Name: svm_from_cfg
Project Name: NeuroTechX/moabb
Commit Name: bd7fb0b678678a421e2feb2a850aa17721128a12
Time: 2018-02-27
Author: vjayaram@danube.is.localnet
File Name: examples/MotorImagery/two_class_motor_imagery.py
Class Name:
Method Name: