├── .github ├── pull_request_template.md └── workflows │ ├── main.yml │ ├── publish_to_pypi.yml │ └── publish_to_test_pypi.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── bcipy ├── __init__.py ├── acquisition │ ├── README.md │ ├── __init__.py │ ├── datastream │ │ ├── __init__.py │ │ ├── generator.py │ │ ├── lsl_server.py │ │ ├── mock │ │ │ ├── __init__.py │ │ │ ├── eye_tracker_server.py │ │ │ └── switch.py │ │ └── producer.py │ ├── demo │ │ ├── demo_eeg_with_switch.py │ │ ├── demo_eye_tracker_client_and_server.py │ │ ├── demo_lsl_acq_client.py │ │ ├── demo_lsl_recorder.py │ │ ├── demo_lsl_server.py │ │ └── demo_switch.py │ ├── devices.py │ ├── exceptions.py │ ├── marker_writer.py │ ├── multimodal.py │ ├── protocols │ │ ├── __init__.py │ │ └── lsl │ │ │ ├── __init__.py │ │ │ ├── connect.py │ │ │ ├── lsl_client.py │ │ │ ├── lsl_connector.py │ │ │ └── lsl_recorder.py │ ├── record.py │ ├── tests │ │ ├── datastream │ │ │ ├── test_generator.py │ │ │ └── test_producer.py │ │ ├── protocols │ │ │ └── lsl │ │ │ │ ├── test_lsl_client.py │ │ │ │ └── test_lsl_recorder.py │ │ ├── test_client_manager.py │ │ ├── test_content_type.py │ │ └── test_devices.py │ └── util.py ├── config.py ├── core │ ├── README.md │ ├── __init__.py │ ├── demo │ │ ├── demo_report.py │ │ ├── demo_session_tools.py │ │ └── demo_stimuli_generation.py │ ├── list.py │ ├── parameters.py │ ├── raw_data.py │ ├── report.py │ ├── session.py │ ├── stimuli.py │ ├── symbols.py │ ├── tests │ │ ├── resources │ │ │ ├── images │ │ │ │ ├── 1x1_PLUS.bmp │ │ │ │ ├── 1x1_PLUS.jpg │ │ │ │ ├── 1x1_PLUS.png │ │ │ │ ├── a_1x1.bmp │ │ │ │ ├── b_1x1.jpg │ │ │ │ ├── c_1x1.png │ │ │ │ └── text.txt │ │ │ └── mock_session │ │ │ │ ├── parameters.json │ │ │ │ ├── session.csv │ │ │ │ └── session.json │ │ ├── test_list.py │ │ ├── test_parameters.py │ │ ├── test_raw_data.py │ │ ├── test_report.py │ │ ├── test_session.py │ │ ├── test_stimuli.py │ │ ├── test_symbols.py │ │ └── test_triggers.py │ └── triggers.py ├── demo │ └── bci_main_demo.py ├── display │ ├── README.md │ ├── __init__.py │ ├── components │ │ ├── __init__.py │ │ ├── button_press_handler.py │ │ ├── layout.py │ │ └── task_bar.py │ ├── demo │ │ ├── components │ │ │ ├── demo_layouts.py │ │ │ └── demo_task_bar.py │ │ ├── matrix │ │ │ ├── demo_calibration_matrix.py │ │ │ ├── demo_copyphrase_matrix.py │ │ │ └── demo_matrix_layout.py │ │ ├── rsvp │ │ │ ├── demo_calibration_rsvp.py │ │ │ └── demo_copyphrase_rsvp.py │ │ └── vep │ │ │ └── demo_calibration_vep.py │ ├── main.py │ ├── paradigm │ │ ├── __init__.py │ │ ├── matrix │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── display.py │ │ │ └── layout.py │ │ ├── rsvp │ │ │ ├── __init__.py │ │ │ ├── display.py │ │ │ └── mode │ │ │ │ ├── __init__.py │ │ │ │ ├── calibration.py │ │ │ │ └── copy_phrase.py │ │ └── vep │ │ │ ├── __init__.py │ │ │ ├── codes.py │ │ │ ├── display.py │ │ │ ├── layout.py │ │ │ └── vep_stim.py │ └── tests │ │ ├── components │ │ ├── test_button_press_handler.py │ │ ├── test_layout.py │ │ └── test_task_bar.py │ │ ├── paradigm │ │ ├── matrix │ │ │ ├── test_matrix_display.py │ │ │ └── test_matrix_layout.py │ │ └── rsvp │ │ │ └── test_rsvp_display.py │ │ ├── test_display.py │ │ ├── test_main.py │ │ └── vep │ │ ├── test_codes.py │ │ └── test_vep_layout.py ├── exceptions.py ├── feedback │ ├── README.md │ ├── __init__.py │ ├── demo │ │ ├── demo_sound_feedback.py │ │ └── demo_visual_feedback.py │ ├── feedback.py │ ├── sound │ │ ├── __init__.py │ │ └── auditory_feedback.py │ ├── tests │ │ ├── sound │ │ │ └── test_sound_feedback.py │ │ └── visual │ │ │ └── test_visual_feedback.py │ └── visual │ │ ├── __init__.py │ │ └── visual_feedback.py ├── gui │ ├── BCInterface.py │ ├── README.md │ ├── __init__.py │ ├── alert.py │ ├── bcipy_stylesheet.css │ ├── bciui.py │ ├── experiments │ │ ├── ExperimentField.py │ │ ├── ExperimentRegistry.py │ │ ├── FieldRegistry.py │ │ ├── __init__.py │ │ └── demo │ │ │ └── demo_experiment_field_collection.py │ ├── file_dialog.py │ ├── intertask_gui.py │ ├── main.py │ ├── parameters │ │ └── params_form.py │ ├── tests │ │ └── viewer │ │ │ ├── test_gui_main.py │ │ │ └── test_ring_buffer.py │ └── viewer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── data_source │ │ ├── __init__.py │ │ ├── data_source.py │ │ ├── file_streamer.py │ │ └── lsl_data_source.py │ │ ├── data_viewer.py │ │ ├── demo │ │ └── viewer_demo.py │ │ └── ring_buffer.py ├── helpers │ ├── README.md │ ├── __init__.py │ ├── acquisition.py │ ├── clock.py │ ├── copy_phrase_wrapper.py │ ├── demo │ │ └── demo_visualization.py │ ├── language_model.py │ ├── offset.py │ ├── task.py │ ├── tests │ │ ├── resources │ │ │ ├── mock_offset │ │ │ │ └── time_test_data │ │ │ │ │ ├── raw_data.csv.zip │ │ │ │ │ └── triggers.txt.zip │ │ │ ├── mock_x_generate_erp.pkl │ │ │ └── mock_y_generate_erp.pkl │ │ ├── test_acquisition.py │ │ ├── test_clock.py │ │ ├── test_copy_phrase_wrapper.py │ │ ├── test_language_model.py │ │ ├── test_offset.py │ │ ├── test_system_utils.py │ │ ├── test_task.py │ │ ├── test_validate.py │ │ └── test_visualization.py │ ├── utils.py │ ├── validate.py │ └── visualization.py ├── io │ ├── README.md │ ├── __init__.py │ ├── convert.py │ ├── demo │ │ ├── demo_convert.py │ │ └── demo_load_BIDS.py │ ├── load.py │ ├── save.py │ └── tests │ │ ├── test_convert.py │ │ ├── test_load.py │ │ └── test_save.py ├── language │ ├── README.md │ ├── __init__.py │ ├── demo │ │ ├── demo_causal.py │ │ ├── demo_mixture.py │ │ └── demo_ngram.py │ ├── lms │ │ ├── lm_dec19_char_12gram_1e-5.arpa │ │ ├── lm_dec19_char_12gram_1e-5_kenlm_probing.bin │ │ └── lm_dec19_char_tiny_12gram.kenlm │ ├── main.py │ ├── model │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── causal.py │ │ ├── mixture.py │ │ ├── ngram.py │ │ ├── oracle.py │ │ └── uniform.py │ ├── sets │ │ ├── aac_20.tokenized │ │ ├── aac_lower.tokenized │ │ ├── all_lower.tokenized │ │ ├── comm2_lower.tokenized │ │ ├── comm_lower.tokenized │ │ ├── daily_bolt_forum.tokenized │ │ ├── enron_subset.tokenized │ │ ├── enronmobile_lower.tokenized │ │ └── specialists_lower.tokenized │ └── tests │ │ ├── resources │ │ ├── invalid_unigram.json │ │ └── lm_dec19_char_tiny_12gram.kenlm │ │ ├── test_causal.py │ │ ├── test_mixture.py │ │ ├── test_ngram.py │ │ ├── test_oracle.py │ │ └── test_uniform.py ├── main.py ├── parameters │ ├── __init__.py │ ├── devices.json │ ├── experiment │ │ ├── __init__.py │ │ ├── experiments.json │ │ └── phrases.json │ ├── field │ │ ├── __init__.py │ │ └── fields.json │ ├── lm_params.json │ └── parameters.json ├── preferences.py ├── signal │ ├── README.md │ ├── __init__.py │ ├── evaluate │ │ ├── README.md │ │ ├── __init__.py │ │ ├── artifact.py │ │ └── fusion.py │ ├── generator │ │ ├── __init__.py │ │ └── generator.py │ ├── model │ │ ├── README.md │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── classifier.py │ │ ├── cross_validation.py │ │ ├── density_estimation.py │ │ ├── dimensionality_reduction.py │ │ ├── gaussian_mixture │ │ │ ├── __init__.py │ │ │ └── gaussian_mixture.py │ │ ├── inquiry_preview.py │ │ ├── offline_analysis.py │ │ ├── pca_rda_kde │ │ │ ├── __init__.py │ │ │ └── pca_rda_kde.py │ │ ├── pipeline.py │ │ ├── rda_kde │ │ │ ├── __init__.py │ │ │ └── rda_kde.py │ │ └── switch_model.py │ ├── process │ │ ├── __init__.py │ │ ├── decomposition │ │ │ ├── __init__.py │ │ │ ├── cwt.py │ │ │ └── psd.py │ │ ├── extract_gaze.py │ │ ├── filter.py │ │ └── transform.py │ └── tests │ │ ├── evaluate │ │ └── test_artifact.py │ │ ├── model │ │ ├── gaussian_mixture │ │ │ └── test_gaussian_mixture.py │ │ ├── integration_test_expected_output │ │ │ ├── fusion │ │ │ │ ├── model_eeg_0.9188.pkl │ │ │ │ └── model_eyetracker_None.pkl │ │ │ ├── model_eeg_0.9702.pkl │ │ │ └── model_eyetracker_None.pkl │ │ ├── integration_test_input │ │ │ ├── eeg │ │ │ │ ├── devices.json │ │ │ │ ├── raw_data.csv.gz │ │ │ │ └── triggers.txt │ │ │ ├── et │ │ │ │ ├── devices.json │ │ │ │ ├── eyetracker_data_tobii-p0.csv.gz │ │ │ │ ├── matrix.png │ │ │ │ ├── stimuli_positions.json │ │ │ │ └── triggers.txt │ │ │ └── fusion │ │ │ │ ├── devices.json │ │ │ │ └── raw_data.csv.gz │ │ ├── pca_rda_kde │ │ │ └── test_pca_rda_kde.py │ │ ├── rda_kde │ │ │ └── test_rda_kde.py │ │ ├── test_inquiry_preview.py │ │ ├── test_offline_analysis.py │ │ ├── test_switch_model.py │ │ └── unit_test_expected_output │ │ │ ├── test_inference.expected.png │ │ │ ├── test_kde_plot.expected.png │ │ │ ├── test_kde_values.expected.npy │ │ │ ├── test_pca.expected.npy │ │ │ └── test_rda.expected.npy │ │ └── process │ │ └── test_downsample.py ├── simulator │ ├── README.md │ ├── __init__.py │ ├── data │ │ ├── __init__.py │ │ ├── data_engine.py │ │ ├── data_process.py │ │ ├── processor_registry.py │ │ ├── sampler │ │ │ ├── __init__.py │ │ │ ├── base_sampler.py │ │ │ ├── inquiry_range_sampler.py │ │ │ ├── inquiry_sampler.py │ │ │ ├── replay_sampler.py │ │ │ └── target_nontarget_sampler.py │ │ ├── switch_data_processor.py │ │ └── trial.py │ ├── demo │ │ └── demo_group_simulation.py │ ├── exceptions.py │ ├── task │ │ ├── __init__.py │ │ ├── copy_phrase.py │ │ ├── null_daq.py │ │ ├── null_display.py │ │ ├── replay_session.py │ │ ├── replay_task.py │ │ ├── task_factory.py │ │ └── task_runner.py │ ├── tests │ │ ├── resources │ │ │ ├── btn_subset_parameters.json │ │ │ ├── markers_data_switch.csv │ │ │ ├── session.json │ │ │ └── triggers.txt │ │ ├── test_data_engine.py │ │ ├── test_gui_utils.py │ │ ├── test_inquiry_range_sampler.py │ │ ├── test_metrics.py │ │ ├── test_obj_args_widget.py │ │ ├── test_replay_comparison.py │ │ ├── test_replay_sampler.py │ │ ├── test_sim_artifact.py │ │ ├── test_switch_data_processor.py │ │ ├── test_task_runner.py │ │ └── test_trial.py │ ├── ui │ │ ├── cli.py │ │ ├── gui.py │ │ ├── gui_utils.py │ │ └── obj_args_widget.py │ └── util │ │ ├── __init__.py │ │ ├── artifact.py │ │ ├── generate_marker_data.py │ │ ├── metrics.py │ │ ├── replay_comparison.py │ │ ├── state.py │ │ └── switch_utils.py ├── static │ ├── images │ │ ├── gui │ │ │ ├── CAMBI_full_logo.png │ │ │ ├── bci_cas_logo.png │ │ │ ├── cambi.png │ │ │ ├── cambi_fav.ico │ │ │ ├── neu.png │ │ │ └── ohsu.png │ │ ├── main │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── DOT.png │ │ │ ├── MINUS.png │ │ │ ├── PLUS.png │ │ │ ├── QUESTION.png │ │ │ ├── matrix.png │ │ │ └── rsvp.png │ │ ├── rsvp │ │ │ ├── A.png │ │ │ ├── B.png │ │ │ ├── C.png │ │ │ ├── D.png │ │ │ ├── E.png │ │ │ ├── F.png │ │ │ ├── G.png │ │ │ ├── H.png │ │ │ ├── I.png │ │ │ ├── J.png │ │ │ ├── K.png │ │ │ ├── L.png │ │ │ ├── M.png │ │ │ ├── N.png │ │ │ ├── O.png │ │ │ ├── P.png │ │ │ ├── Q.png │ │ │ ├── R.png │ │ │ ├── S.png │ │ │ ├── T.png │ │ │ ├── U.png │ │ │ ├── V.png │ │ │ ├── W.png │ │ │ ├── X.png │ │ │ ├── Y.png │ │ │ ├── Z.png │ │ │ └── _.png │ │ └── testing │ │ │ └── white.png │ └── sounds │ │ ├── 1k_800mV_20ms_stereo.wav │ │ ├── beep.wav │ │ ├── click_x.wav │ │ └── rsvp │ │ ├── 1_symbol.wav │ │ ├── 2_gong.wav │ │ ├── 3_ping.wav │ │ ├── 4_blurp.wav │ │ ├── 5_raygun.wav │ │ └── 6_blank.wav ├── task │ ├── README.md │ ├── __init__.py │ ├── actions.py │ ├── calibration.py │ ├── control │ │ ├── __init__.py │ │ ├── criteria.py │ │ ├── evidence.py │ │ ├── handler.py │ │ └── query.py │ ├── data.py │ ├── demo │ │ ├── actions │ │ │ └── demo_calibration_report.py │ │ ├── control │ │ │ └── demo_handler.py │ │ └── orchestrator │ │ │ └── demo_orchestrator.py │ ├── exceptions.py │ ├── main.py │ ├── orchestrator │ │ ├── __init__.py │ │ ├── orchestrator.py │ │ └── protocol.py │ ├── paradigm │ │ ├── __init__.py │ │ ├── matrix │ │ │ ├── __init__.py │ │ │ ├── calibration.py │ │ │ ├── copy_phrase.py │ │ │ └── timing_verification.py │ │ ├── rsvp │ │ │ ├── __init__.py │ │ │ ├── calibration │ │ │ │ ├── __init__.py │ │ │ │ ├── calibration.py │ │ │ │ └── timing_verification.py │ │ │ └── copy_phrase.py │ │ └── vep │ │ │ ├── __init__.py │ │ │ ├── calibration.py │ │ │ └── stim_generation.py │ ├── registry.py │ └── tests │ │ ├── core │ │ ├── test_actions.py │ │ ├── test_data.py │ │ ├── test_eeg_evaluator.py │ │ ├── test_evidence.py │ │ ├── test_handler.py │ │ ├── test_query.py │ │ └── test_switch_evaluator.py │ │ ├── orchestrator │ │ ├── test_orchestrator.py │ │ └── test_protocol.py │ │ └── paradigm │ │ ├── matrix │ │ └── test_matrix_calibration.py │ │ ├── rsvp │ │ ├── calibration │ │ │ └── test_rsvp_calibration.py │ │ ├── test_copy_phrase.py │ │ └── test_copy_phrase_task_summary.py │ │ └── vep │ │ └── test_stimuli_vep.py └── tests │ ├── test_bci_main.py │ └── test_preferences.py ├── pyproject.toml └── scripts ├── README.md ├── python └── update_params.py └── shell ├── linux_requirements.sh └── m2chip_install.sh /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/.github/workflows/publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish_to_test_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/.github/workflows/publish_to_test_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/README.md -------------------------------------------------------------------------------- /bcipy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/acquisition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/README.md -------------------------------------------------------------------------------- /bcipy/acquisition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/__init__.py -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/datastream/generator.py -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/lsl_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/datastream/lsl_server.py -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/mock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/datastream/mock/__init__.py -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/mock/eye_tracker_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/datastream/mock/eye_tracker_server.py -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/mock/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/datastream/mock/switch.py -------------------------------------------------------------------------------- /bcipy/acquisition/datastream/producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/datastream/producer.py -------------------------------------------------------------------------------- /bcipy/acquisition/demo/demo_eeg_with_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/demo/demo_eeg_with_switch.py -------------------------------------------------------------------------------- /bcipy/acquisition/demo/demo_eye_tracker_client_and_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/demo/demo_eye_tracker_client_and_server.py -------------------------------------------------------------------------------- /bcipy/acquisition/demo/demo_lsl_acq_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/demo/demo_lsl_acq_client.py -------------------------------------------------------------------------------- /bcipy/acquisition/demo/demo_lsl_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/demo/demo_lsl_recorder.py -------------------------------------------------------------------------------- /bcipy/acquisition/demo/demo_lsl_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/demo/demo_lsl_server.py -------------------------------------------------------------------------------- /bcipy/acquisition/demo/demo_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/demo/demo_switch.py -------------------------------------------------------------------------------- /bcipy/acquisition/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/devices.py -------------------------------------------------------------------------------- /bcipy/acquisition/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/exceptions.py -------------------------------------------------------------------------------- /bcipy/acquisition/marker_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/marker_writer.py -------------------------------------------------------------------------------- /bcipy/acquisition/multimodal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/multimodal.py -------------------------------------------------------------------------------- /bcipy/acquisition/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/acquisition/protocols/lsl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/acquisition/protocols/lsl/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/protocols/lsl/connect.py -------------------------------------------------------------------------------- /bcipy/acquisition/protocols/lsl/lsl_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/protocols/lsl/lsl_client.py -------------------------------------------------------------------------------- /bcipy/acquisition/protocols/lsl/lsl_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/protocols/lsl/lsl_connector.py -------------------------------------------------------------------------------- /bcipy/acquisition/protocols/lsl/lsl_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/protocols/lsl/lsl_recorder.py -------------------------------------------------------------------------------- /bcipy/acquisition/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/record.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/datastream/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/datastream/test_generator.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/datastream/test_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/datastream/test_producer.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/protocols/lsl/test_lsl_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/protocols/lsl/test_lsl_client.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/protocols/lsl/test_lsl_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/protocols/lsl/test_lsl_recorder.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/test_client_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/test_client_manager.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/test_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/test_content_type.py -------------------------------------------------------------------------------- /bcipy/acquisition/tests/test_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/tests/test_devices.py -------------------------------------------------------------------------------- /bcipy/acquisition/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/acquisition/util.py -------------------------------------------------------------------------------- /bcipy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/config.py -------------------------------------------------------------------------------- /bcipy/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/README.md -------------------------------------------------------------------------------- /bcipy/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/core/demo/demo_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/demo/demo_report.py -------------------------------------------------------------------------------- /bcipy/core/demo/demo_session_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/demo/demo_session_tools.py -------------------------------------------------------------------------------- /bcipy/core/demo/demo_stimuli_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/demo/demo_stimuli_generation.py -------------------------------------------------------------------------------- /bcipy/core/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/list.py -------------------------------------------------------------------------------- /bcipy/core/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/parameters.py -------------------------------------------------------------------------------- /bcipy/core/raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/raw_data.py -------------------------------------------------------------------------------- /bcipy/core/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/report.py -------------------------------------------------------------------------------- /bcipy/core/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/session.py -------------------------------------------------------------------------------- /bcipy/core/stimuli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/stimuli.py -------------------------------------------------------------------------------- /bcipy/core/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/symbols.py -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/1x1_PLUS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/1x1_PLUS.bmp -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/1x1_PLUS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/1x1_PLUS.jpg -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/1x1_PLUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/1x1_PLUS.png -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/a_1x1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/a_1x1.bmp -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/b_1x1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/b_1x1.jpg -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/c_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/c_1x1.png -------------------------------------------------------------------------------- /bcipy/core/tests/resources/images/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/images/text.txt -------------------------------------------------------------------------------- /bcipy/core/tests/resources/mock_session/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/mock_session/parameters.json -------------------------------------------------------------------------------- /bcipy/core/tests/resources/mock_session/session.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/mock_session/session.csv -------------------------------------------------------------------------------- /bcipy/core/tests/resources/mock_session/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/resources/mock_session/session.json -------------------------------------------------------------------------------- /bcipy/core/tests/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_list.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_parameters.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_raw_data.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_report.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_session.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_stimuli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_stimuli.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_symbols.py -------------------------------------------------------------------------------- /bcipy/core/tests/test_triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/tests/test_triggers.py -------------------------------------------------------------------------------- /bcipy/core/triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/core/triggers.py -------------------------------------------------------------------------------- /bcipy/demo/bci_main_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/demo/bci_main_demo.py -------------------------------------------------------------------------------- /bcipy/display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/README.md -------------------------------------------------------------------------------- /bcipy/display/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/__init__.py -------------------------------------------------------------------------------- /bcipy/display/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/display/components/button_press_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/components/button_press_handler.py -------------------------------------------------------------------------------- /bcipy/display/components/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/components/layout.py -------------------------------------------------------------------------------- /bcipy/display/components/task_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/components/task_bar.py -------------------------------------------------------------------------------- /bcipy/display/demo/components/demo_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/components/demo_layouts.py -------------------------------------------------------------------------------- /bcipy/display/demo/components/demo_task_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/components/demo_task_bar.py -------------------------------------------------------------------------------- /bcipy/display/demo/matrix/demo_calibration_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/matrix/demo_calibration_matrix.py -------------------------------------------------------------------------------- /bcipy/display/demo/matrix/demo_copyphrase_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/matrix/demo_copyphrase_matrix.py -------------------------------------------------------------------------------- /bcipy/display/demo/matrix/demo_matrix_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/matrix/demo_matrix_layout.py -------------------------------------------------------------------------------- /bcipy/display/demo/rsvp/demo_calibration_rsvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/rsvp/demo_calibration_rsvp.py -------------------------------------------------------------------------------- /bcipy/display/demo/rsvp/demo_copyphrase_rsvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/rsvp/demo_copyphrase_rsvp.py -------------------------------------------------------------------------------- /bcipy/display/demo/vep/demo_calibration_vep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/demo/vep/demo_calibration_vep.py -------------------------------------------------------------------------------- /bcipy/display/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/main.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/display/paradigm/matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/matrix/README.md -------------------------------------------------------------------------------- /bcipy/display/paradigm/matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/matrix/__init__.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/matrix/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/matrix/display.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/matrix/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/matrix/layout.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/rsvp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/rsvp/__init__.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/rsvp/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/rsvp/display.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/rsvp/mode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/display/paradigm/rsvp/mode/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/rsvp/mode/calibration.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/rsvp/mode/copy_phrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/rsvp/mode/copy_phrase.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/vep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/display/paradigm/vep/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/vep/codes.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/vep/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/vep/display.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/vep/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/vep/layout.py -------------------------------------------------------------------------------- /bcipy/display/paradigm/vep/vep_stim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/paradigm/vep/vep_stim.py -------------------------------------------------------------------------------- /bcipy/display/tests/components/test_button_press_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/components/test_button_press_handler.py -------------------------------------------------------------------------------- /bcipy/display/tests/components/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/components/test_layout.py -------------------------------------------------------------------------------- /bcipy/display/tests/components/test_task_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/components/test_task_bar.py -------------------------------------------------------------------------------- /bcipy/display/tests/paradigm/matrix/test_matrix_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/paradigm/matrix/test_matrix_display.py -------------------------------------------------------------------------------- /bcipy/display/tests/paradigm/matrix/test_matrix_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/paradigm/matrix/test_matrix_layout.py -------------------------------------------------------------------------------- /bcipy/display/tests/paradigm/rsvp/test_rsvp_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/paradigm/rsvp/test_rsvp_display.py -------------------------------------------------------------------------------- /bcipy/display/tests/test_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/test_display.py -------------------------------------------------------------------------------- /bcipy/display/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/test_main.py -------------------------------------------------------------------------------- /bcipy/display/tests/vep/test_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/vep/test_codes.py -------------------------------------------------------------------------------- /bcipy/display/tests/vep/test_vep_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/display/tests/vep/test_vep_layout.py -------------------------------------------------------------------------------- /bcipy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/exceptions.py -------------------------------------------------------------------------------- /bcipy/feedback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/README.md -------------------------------------------------------------------------------- /bcipy/feedback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/feedback/demo/demo_sound_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/demo/demo_sound_feedback.py -------------------------------------------------------------------------------- /bcipy/feedback/demo/demo_visual_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/demo/demo_visual_feedback.py -------------------------------------------------------------------------------- /bcipy/feedback/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/feedback.py -------------------------------------------------------------------------------- /bcipy/feedback/sound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/feedback/sound/auditory_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/sound/auditory_feedback.py -------------------------------------------------------------------------------- /bcipy/feedback/tests/sound/test_sound_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/tests/sound/test_sound_feedback.py -------------------------------------------------------------------------------- /bcipy/feedback/tests/visual/test_visual_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/tests/visual/test_visual_feedback.py -------------------------------------------------------------------------------- /bcipy/feedback/visual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/feedback/visual/visual_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/feedback/visual/visual_feedback.py -------------------------------------------------------------------------------- /bcipy/gui/BCInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/BCInterface.py -------------------------------------------------------------------------------- /bcipy/gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/README.md -------------------------------------------------------------------------------- /bcipy/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/gui/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/alert.py -------------------------------------------------------------------------------- /bcipy/gui/bcipy_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/bcipy_stylesheet.css -------------------------------------------------------------------------------- /bcipy/gui/bciui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/bciui.py -------------------------------------------------------------------------------- /bcipy/gui/experiments/ExperimentField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/experiments/ExperimentField.py -------------------------------------------------------------------------------- /bcipy/gui/experiments/ExperimentRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/experiments/ExperimentRegistry.py -------------------------------------------------------------------------------- /bcipy/gui/experiments/FieldRegistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/experiments/FieldRegistry.py -------------------------------------------------------------------------------- /bcipy/gui/experiments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/gui/experiments/demo/demo_experiment_field_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/experiments/demo/demo_experiment_field_collection.py -------------------------------------------------------------------------------- /bcipy/gui/file_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/file_dialog.py -------------------------------------------------------------------------------- /bcipy/gui/intertask_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/intertask_gui.py -------------------------------------------------------------------------------- /bcipy/gui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/main.py -------------------------------------------------------------------------------- /bcipy/gui/parameters/params_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/parameters/params_form.py -------------------------------------------------------------------------------- /bcipy/gui/tests/viewer/test_gui_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/tests/viewer/test_gui_main.py -------------------------------------------------------------------------------- /bcipy/gui/tests/viewer/test_ring_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/tests/viewer/test_ring_buffer.py -------------------------------------------------------------------------------- /bcipy/gui/viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/README.md -------------------------------------------------------------------------------- /bcipy/gui/viewer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/gui/viewer/data_source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/gui/viewer/data_source/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/data_source/data_source.py -------------------------------------------------------------------------------- /bcipy/gui/viewer/data_source/file_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/data_source/file_streamer.py -------------------------------------------------------------------------------- /bcipy/gui/viewer/data_source/lsl_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/data_source/lsl_data_source.py -------------------------------------------------------------------------------- /bcipy/gui/viewer/data_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/data_viewer.py -------------------------------------------------------------------------------- /bcipy/gui/viewer/demo/viewer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/demo/viewer_demo.py -------------------------------------------------------------------------------- /bcipy/gui/viewer/ring_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/gui/viewer/ring_buffer.py -------------------------------------------------------------------------------- /bcipy/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/README.md -------------------------------------------------------------------------------- /bcipy/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/helpers/acquisition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/acquisition.py -------------------------------------------------------------------------------- /bcipy/helpers/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/clock.py -------------------------------------------------------------------------------- /bcipy/helpers/copy_phrase_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/copy_phrase_wrapper.py -------------------------------------------------------------------------------- /bcipy/helpers/demo/demo_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/demo/demo_visualization.py -------------------------------------------------------------------------------- /bcipy/helpers/language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/language_model.py -------------------------------------------------------------------------------- /bcipy/helpers/offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/offset.py -------------------------------------------------------------------------------- /bcipy/helpers/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/task.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/resources/mock_offset/time_test_data/raw_data.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/resources/mock_offset/time_test_data/raw_data.csv.zip -------------------------------------------------------------------------------- /bcipy/helpers/tests/resources/mock_offset/time_test_data/triggers.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/resources/mock_offset/time_test_data/triggers.txt.zip -------------------------------------------------------------------------------- /bcipy/helpers/tests/resources/mock_x_generate_erp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/resources/mock_x_generate_erp.pkl -------------------------------------------------------------------------------- /bcipy/helpers/tests/resources/mock_y_generate_erp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/resources/mock_y_generate_erp.pkl -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_acquisition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_acquisition.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_clock.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_copy_phrase_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_copy_phrase_wrapper.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_language_model.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_offset.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_system_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_system_utils.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_task.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_validate.py -------------------------------------------------------------------------------- /bcipy/helpers/tests/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/tests/test_visualization.py -------------------------------------------------------------------------------- /bcipy/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/utils.py -------------------------------------------------------------------------------- /bcipy/helpers/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/validate.py -------------------------------------------------------------------------------- /bcipy/helpers/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/helpers/visualization.py -------------------------------------------------------------------------------- /bcipy/io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/README.md -------------------------------------------------------------------------------- /bcipy/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/io/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/convert.py -------------------------------------------------------------------------------- /bcipy/io/demo/demo_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/demo/demo_convert.py -------------------------------------------------------------------------------- /bcipy/io/demo/demo_load_BIDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/demo/demo_load_BIDS.py -------------------------------------------------------------------------------- /bcipy/io/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/load.py -------------------------------------------------------------------------------- /bcipy/io/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/save.py -------------------------------------------------------------------------------- /bcipy/io/tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/tests/test_convert.py -------------------------------------------------------------------------------- /bcipy/io/tests/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/tests/test_load.py -------------------------------------------------------------------------------- /bcipy/io/tests/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/io/tests/test_save.py -------------------------------------------------------------------------------- /bcipy/language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/README.md -------------------------------------------------------------------------------- /bcipy/language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/__init__.py -------------------------------------------------------------------------------- /bcipy/language/demo/demo_causal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/demo/demo_causal.py -------------------------------------------------------------------------------- /bcipy/language/demo/demo_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/demo/demo_mixture.py -------------------------------------------------------------------------------- /bcipy/language/demo/demo_ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/demo/demo_ngram.py -------------------------------------------------------------------------------- /bcipy/language/lms/lm_dec19_char_12gram_1e-5.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/lms/lm_dec19_char_12gram_1e-5.arpa -------------------------------------------------------------------------------- /bcipy/language/lms/lm_dec19_char_12gram_1e-5_kenlm_probing.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/lms/lm_dec19_char_12gram_1e-5_kenlm_probing.bin -------------------------------------------------------------------------------- /bcipy/language/lms/lm_dec19_char_tiny_12gram.kenlm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/lms/lm_dec19_char_tiny_12gram.kenlm -------------------------------------------------------------------------------- /bcipy/language/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/main.py -------------------------------------------------------------------------------- /bcipy/language/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/language/model/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/model/adapter.py -------------------------------------------------------------------------------- /bcipy/language/model/causal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/model/causal.py -------------------------------------------------------------------------------- /bcipy/language/model/mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/model/mixture.py -------------------------------------------------------------------------------- /bcipy/language/model/ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/model/ngram.py -------------------------------------------------------------------------------- /bcipy/language/model/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/model/oracle.py -------------------------------------------------------------------------------- /bcipy/language/model/uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/model/uniform.py -------------------------------------------------------------------------------- /bcipy/language/sets/aac_20.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/aac_20.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/aac_lower.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/aac_lower.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/all_lower.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/all_lower.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/comm2_lower.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/comm2_lower.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/comm_lower.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/comm_lower.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/daily_bolt_forum.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/daily_bolt_forum.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/enron_subset.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/enron_subset.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/enronmobile_lower.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/enronmobile_lower.tokenized -------------------------------------------------------------------------------- /bcipy/language/sets/specialists_lower.tokenized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/sets/specialists_lower.tokenized -------------------------------------------------------------------------------- /bcipy/language/tests/resources/invalid_unigram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/resources/invalid_unigram.json -------------------------------------------------------------------------------- /bcipy/language/tests/resources/lm_dec19_char_tiny_12gram.kenlm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/resources/lm_dec19_char_tiny_12gram.kenlm -------------------------------------------------------------------------------- /bcipy/language/tests/test_causal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/test_causal.py -------------------------------------------------------------------------------- /bcipy/language/tests/test_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/test_mixture.py -------------------------------------------------------------------------------- /bcipy/language/tests/test_ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/test_ngram.py -------------------------------------------------------------------------------- /bcipy/language/tests/test_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/test_oracle.py -------------------------------------------------------------------------------- /bcipy/language/tests/test_uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/language/tests/test_uniform.py -------------------------------------------------------------------------------- /bcipy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/main.py -------------------------------------------------------------------------------- /bcipy/parameters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/parameters/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/parameters/devices.json -------------------------------------------------------------------------------- /bcipy/parameters/experiment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/parameters/experiment/experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/parameters/experiment/experiments.json -------------------------------------------------------------------------------- /bcipy/parameters/experiment/phrases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/parameters/experiment/phrases.json -------------------------------------------------------------------------------- /bcipy/parameters/field/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/parameters/field/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/parameters/field/fields.json -------------------------------------------------------------------------------- /bcipy/parameters/lm_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/parameters/lm_params.json -------------------------------------------------------------------------------- /bcipy/parameters/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/parameters/parameters.json -------------------------------------------------------------------------------- /bcipy/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/preferences.py -------------------------------------------------------------------------------- /bcipy/signal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/README.md -------------------------------------------------------------------------------- /bcipy/signal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/signal/evaluate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/evaluate/README.md -------------------------------------------------------------------------------- /bcipy/signal/evaluate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/signal/evaluate/artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/evaluate/artifact.py -------------------------------------------------------------------------------- /bcipy/signal/evaluate/fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/evaluate/fusion.py -------------------------------------------------------------------------------- /bcipy/signal/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/signal/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/generator/generator.py -------------------------------------------------------------------------------- /bcipy/signal/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/README.md -------------------------------------------------------------------------------- /bcipy/signal/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/__init__.py -------------------------------------------------------------------------------- /bcipy/signal/model/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/base_model.py -------------------------------------------------------------------------------- /bcipy/signal/model/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/classifier.py -------------------------------------------------------------------------------- /bcipy/signal/model/cross_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/cross_validation.py -------------------------------------------------------------------------------- /bcipy/signal/model/density_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/density_estimation.py -------------------------------------------------------------------------------- /bcipy/signal/model/dimensionality_reduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/dimensionality_reduction.py -------------------------------------------------------------------------------- /bcipy/signal/model/gaussian_mixture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/gaussian_mixture/__init__.py -------------------------------------------------------------------------------- /bcipy/signal/model/gaussian_mixture/gaussian_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/gaussian_mixture/gaussian_mixture.py -------------------------------------------------------------------------------- /bcipy/signal/model/inquiry_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/inquiry_preview.py -------------------------------------------------------------------------------- /bcipy/signal/model/offline_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/offline_analysis.py -------------------------------------------------------------------------------- /bcipy/signal/model/pca_rda_kde/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/pca_rda_kde/__init__.py -------------------------------------------------------------------------------- /bcipy/signal/model/pca_rda_kde/pca_rda_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/pca_rda_kde/pca_rda_kde.py -------------------------------------------------------------------------------- /bcipy/signal/model/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/pipeline.py -------------------------------------------------------------------------------- /bcipy/signal/model/rda_kde/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/signal/model/rda_kde/rda_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/rda_kde/rda_kde.py -------------------------------------------------------------------------------- /bcipy/signal/model/switch_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/model/switch_model.py -------------------------------------------------------------------------------- /bcipy/signal/process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/__init__.py -------------------------------------------------------------------------------- /bcipy/signal/process/decomposition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/decomposition/__init__.py -------------------------------------------------------------------------------- /bcipy/signal/process/decomposition/cwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/decomposition/cwt.py -------------------------------------------------------------------------------- /bcipy/signal/process/decomposition/psd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/decomposition/psd.py -------------------------------------------------------------------------------- /bcipy/signal/process/extract_gaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/extract_gaze.py -------------------------------------------------------------------------------- /bcipy/signal/process/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/filter.py -------------------------------------------------------------------------------- /bcipy/signal/process/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/process/transform.py -------------------------------------------------------------------------------- /bcipy/signal/tests/evaluate/test_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/evaluate/test_artifact.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/gaussian_mixture/test_gaussian_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/gaussian_mixture/test_gaussian_mixture.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_expected_output/fusion/model_eeg_0.9188.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_expected_output/fusion/model_eeg_0.9188.pkl -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_expected_output/fusion/model_eyetracker_None.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_expected_output/fusion/model_eyetracker_None.pkl -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_expected_output/model_eeg_0.9702.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_expected_output/model_eeg_0.9702.pkl -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_expected_output/model_eyetracker_None.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_expected_output/model_eyetracker_None.pkl -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/eeg/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/eeg/devices.json -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/eeg/raw_data.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/eeg/raw_data.csv.gz -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/eeg/triggers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/eeg/triggers.txt -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/et/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/et/devices.json -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/et/eyetracker_data_tobii-p0.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/et/eyetracker_data_tobii-p0.csv.gz -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/et/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/et/matrix.png -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/et/stimuli_positions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/et/stimuli_positions.json -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/et/triggers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/et/triggers.txt -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/fusion/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/fusion/devices.json -------------------------------------------------------------------------------- /bcipy/signal/tests/model/integration_test_input/fusion/raw_data.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/integration_test_input/fusion/raw_data.csv.gz -------------------------------------------------------------------------------- /bcipy/signal/tests/model/pca_rda_kde/test_pca_rda_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/pca_rda_kde/test_pca_rda_kde.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/rda_kde/test_rda_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/rda_kde/test_rda_kde.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/test_inquiry_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/test_inquiry_preview.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/test_offline_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/test_offline_analysis.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/test_switch_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/test_switch_model.py -------------------------------------------------------------------------------- /bcipy/signal/tests/model/unit_test_expected_output/test_inference.expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/unit_test_expected_output/test_inference.expected.png -------------------------------------------------------------------------------- /bcipy/signal/tests/model/unit_test_expected_output/test_kde_plot.expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/unit_test_expected_output/test_kde_plot.expected.png -------------------------------------------------------------------------------- /bcipy/signal/tests/model/unit_test_expected_output/test_kde_values.expected.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/unit_test_expected_output/test_kde_values.expected.npy -------------------------------------------------------------------------------- /bcipy/signal/tests/model/unit_test_expected_output/test_pca.expected.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/unit_test_expected_output/test_pca.expected.npy -------------------------------------------------------------------------------- /bcipy/signal/tests/model/unit_test_expected_output/test_rda.expected.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/model/unit_test_expected_output/test_rda.expected.npy -------------------------------------------------------------------------------- /bcipy/signal/tests/process/test_downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/signal/tests/process/test_downsample.py -------------------------------------------------------------------------------- /bcipy/simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/README.md -------------------------------------------------------------------------------- /bcipy/simulator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/__init__.py -------------------------------------------------------------------------------- /bcipy/simulator/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/simulator/data/data_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/data_engine.py -------------------------------------------------------------------------------- /bcipy/simulator/data/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/data_process.py -------------------------------------------------------------------------------- /bcipy/simulator/data/processor_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/processor_registry.py -------------------------------------------------------------------------------- /bcipy/simulator/data/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/sampler/__init__.py -------------------------------------------------------------------------------- /bcipy/simulator/data/sampler/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/sampler/base_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/data/sampler/inquiry_range_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/sampler/inquiry_range_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/data/sampler/inquiry_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/sampler/inquiry_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/data/sampler/replay_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/sampler/replay_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/data/sampler/target_nontarget_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/sampler/target_nontarget_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/data/switch_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/switch_data_processor.py -------------------------------------------------------------------------------- /bcipy/simulator/data/trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/data/trial.py -------------------------------------------------------------------------------- /bcipy/simulator/demo/demo_group_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/demo/demo_group_simulation.py -------------------------------------------------------------------------------- /bcipy/simulator/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/exceptions.py -------------------------------------------------------------------------------- /bcipy/simulator/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/simulator/task/copy_phrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/copy_phrase.py -------------------------------------------------------------------------------- /bcipy/simulator/task/null_daq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/null_daq.py -------------------------------------------------------------------------------- /bcipy/simulator/task/null_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/null_display.py -------------------------------------------------------------------------------- /bcipy/simulator/task/replay_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/replay_session.py -------------------------------------------------------------------------------- /bcipy/simulator/task/replay_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/replay_task.py -------------------------------------------------------------------------------- /bcipy/simulator/task/task_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/task_factory.py -------------------------------------------------------------------------------- /bcipy/simulator/task/task_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/task/task_runner.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/resources/btn_subset_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/resources/btn_subset_parameters.json -------------------------------------------------------------------------------- /bcipy/simulator/tests/resources/markers_data_switch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/resources/markers_data_switch.csv -------------------------------------------------------------------------------- /bcipy/simulator/tests/resources/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/resources/session.json -------------------------------------------------------------------------------- /bcipy/simulator/tests/resources/triggers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/resources/triggers.txt -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_data_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_data_engine.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_gui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_gui_utils.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_inquiry_range_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_inquiry_range_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_metrics.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_obj_args_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_obj_args_widget.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_replay_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_replay_comparison.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_replay_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_replay_sampler.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_sim_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_sim_artifact.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_switch_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_switch_data_processor.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_task_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_task_runner.py -------------------------------------------------------------------------------- /bcipy/simulator/tests/test_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/tests/test_trial.py -------------------------------------------------------------------------------- /bcipy/simulator/ui/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/ui/cli.py -------------------------------------------------------------------------------- /bcipy/simulator/ui/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/ui/gui.py -------------------------------------------------------------------------------- /bcipy/simulator/ui/gui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/ui/gui_utils.py -------------------------------------------------------------------------------- /bcipy/simulator/ui/obj_args_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/ui/obj_args_widget.py -------------------------------------------------------------------------------- /bcipy/simulator/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/simulator/util/artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/util/artifact.py -------------------------------------------------------------------------------- /bcipy/simulator/util/generate_marker_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/util/generate_marker_data.py -------------------------------------------------------------------------------- /bcipy/simulator/util/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/util/metrics.py -------------------------------------------------------------------------------- /bcipy/simulator/util/replay_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/util/replay_comparison.py -------------------------------------------------------------------------------- /bcipy/simulator/util/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/util/state.py -------------------------------------------------------------------------------- /bcipy/simulator/util/switch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/simulator/util/switch_utils.py -------------------------------------------------------------------------------- /bcipy/static/images/gui/CAMBI_full_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/gui/CAMBI_full_logo.png -------------------------------------------------------------------------------- /bcipy/static/images/gui/bci_cas_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/gui/bci_cas_logo.png -------------------------------------------------------------------------------- /bcipy/static/images/gui/cambi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/gui/cambi.png -------------------------------------------------------------------------------- /bcipy/static/images/gui/cambi_fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/gui/cambi_fav.ico -------------------------------------------------------------------------------- /bcipy/static/images/gui/neu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/gui/neu.png -------------------------------------------------------------------------------- /bcipy/static/images/gui/ohsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/gui/ohsu.png -------------------------------------------------------------------------------- /bcipy/static/images/main/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/0.png -------------------------------------------------------------------------------- /bcipy/static/images/main/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/1.png -------------------------------------------------------------------------------- /bcipy/static/images/main/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/2.png -------------------------------------------------------------------------------- /bcipy/static/images/main/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/3.png -------------------------------------------------------------------------------- /bcipy/static/images/main/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/4.png -------------------------------------------------------------------------------- /bcipy/static/images/main/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/5.png -------------------------------------------------------------------------------- /bcipy/static/images/main/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/6.png -------------------------------------------------------------------------------- /bcipy/static/images/main/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/7.png -------------------------------------------------------------------------------- /bcipy/static/images/main/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/8.png -------------------------------------------------------------------------------- /bcipy/static/images/main/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/9.png -------------------------------------------------------------------------------- /bcipy/static/images/main/DOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/DOT.png -------------------------------------------------------------------------------- /bcipy/static/images/main/MINUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/MINUS.png -------------------------------------------------------------------------------- /bcipy/static/images/main/PLUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/PLUS.png -------------------------------------------------------------------------------- /bcipy/static/images/main/QUESTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/QUESTION.png -------------------------------------------------------------------------------- /bcipy/static/images/main/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/matrix.png -------------------------------------------------------------------------------- /bcipy/static/images/main/rsvp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/main/rsvp.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/A.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/B.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/C.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/D.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/E.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/F.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/G.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/H.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/I.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/J.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/K.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/L.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/M.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/N.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/O.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/P.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/Q.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/R.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/S.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/T.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/U.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/U.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/V.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/W.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/X.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/Y.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/Z.png -------------------------------------------------------------------------------- /bcipy/static/images/rsvp/_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/rsvp/_.png -------------------------------------------------------------------------------- /bcipy/static/images/testing/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/images/testing/white.png -------------------------------------------------------------------------------- /bcipy/static/sounds/1k_800mV_20ms_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/1k_800mV_20ms_stereo.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/beep.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/click_x.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/click_x.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/rsvp/1_symbol.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/rsvp/1_symbol.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/rsvp/2_gong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/rsvp/2_gong.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/rsvp/3_ping.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/rsvp/3_ping.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/rsvp/4_blurp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/rsvp/4_blurp.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/rsvp/5_raygun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/static/sounds/rsvp/5_raygun.wav -------------------------------------------------------------------------------- /bcipy/static/sounds/rsvp/6_blank.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/README.md -------------------------------------------------------------------------------- /bcipy/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/__init__.py -------------------------------------------------------------------------------- /bcipy/task/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/actions.py -------------------------------------------------------------------------------- /bcipy/task/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/calibration.py -------------------------------------------------------------------------------- /bcipy/task/control/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/task/control/criteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/control/criteria.py -------------------------------------------------------------------------------- /bcipy/task/control/evidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/control/evidence.py -------------------------------------------------------------------------------- /bcipy/task/control/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/control/handler.py -------------------------------------------------------------------------------- /bcipy/task/control/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/control/query.py -------------------------------------------------------------------------------- /bcipy/task/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/data.py -------------------------------------------------------------------------------- /bcipy/task/demo/actions/demo_calibration_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/demo/actions/demo_calibration_report.py -------------------------------------------------------------------------------- /bcipy/task/demo/control/demo_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/demo/control/demo_handler.py -------------------------------------------------------------------------------- /bcipy/task/demo/orchestrator/demo_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/demo/orchestrator/demo_orchestrator.py -------------------------------------------------------------------------------- /bcipy/task/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/exceptions.py -------------------------------------------------------------------------------- /bcipy/task/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/main.py -------------------------------------------------------------------------------- /bcipy/task/orchestrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/orchestrator/__init__.py -------------------------------------------------------------------------------- /bcipy/task/orchestrator/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/orchestrator/orchestrator.py -------------------------------------------------------------------------------- /bcipy/task/orchestrator/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/orchestrator/protocol.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/task/paradigm/matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/matrix/__init__.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/matrix/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/matrix/calibration.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/matrix/copy_phrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/matrix/copy_phrase.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/matrix/timing_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/matrix/timing_verification.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/rsvp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/rsvp/__init__.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/rsvp/calibration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bcipy/task/paradigm/rsvp/calibration/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/rsvp/calibration/calibration.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/rsvp/calibration/timing_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/rsvp/calibration/timing_verification.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/rsvp/copy_phrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/rsvp/copy_phrase.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/vep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/vep/__init__.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/vep/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/vep/calibration.py -------------------------------------------------------------------------------- /bcipy/task/paradigm/vep/stim_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/paradigm/vep/stim_generation.py -------------------------------------------------------------------------------- /bcipy/task/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/registry.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_actions.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_data.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_eeg_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_eeg_evaluator.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_evidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_evidence.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_handler.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_query.py -------------------------------------------------------------------------------- /bcipy/task/tests/core/test_switch_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/core/test_switch_evaluator.py -------------------------------------------------------------------------------- /bcipy/task/tests/orchestrator/test_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/orchestrator/test_orchestrator.py -------------------------------------------------------------------------------- /bcipy/task/tests/orchestrator/test_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/orchestrator/test_protocol.py -------------------------------------------------------------------------------- /bcipy/task/tests/paradigm/matrix/test_matrix_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/paradigm/matrix/test_matrix_calibration.py -------------------------------------------------------------------------------- /bcipy/task/tests/paradigm/rsvp/calibration/test_rsvp_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/paradigm/rsvp/calibration/test_rsvp_calibration.py -------------------------------------------------------------------------------- /bcipy/task/tests/paradigm/rsvp/test_copy_phrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/paradigm/rsvp/test_copy_phrase.py -------------------------------------------------------------------------------- /bcipy/task/tests/paradigm/rsvp/test_copy_phrase_task_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/paradigm/rsvp/test_copy_phrase_task_summary.py -------------------------------------------------------------------------------- /bcipy/task/tests/paradigm/vep/test_stimuli_vep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/task/tests/paradigm/vep/test_stimuli_vep.py -------------------------------------------------------------------------------- /bcipy/tests/test_bci_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/tests/test_bci_main.py -------------------------------------------------------------------------------- /bcipy/tests/test_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/bcipy/tests/test_preferences.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/python/update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/scripts/python/update_params.py -------------------------------------------------------------------------------- /scripts/shell/linux_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/scripts/shell/linux_requirements.sh -------------------------------------------------------------------------------- /scripts/shell/m2chip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMBI-tech/BciPy/HEAD/scripts/shell/m2chip_install.sh --------------------------------------------------------------------------------