Diff of /README.rst [000000] .. [c36663]

Switch to unified view

a b/README.rst
1
.. image:: https://badges.gitter.im/braindecodechat/community.svg
2
   :alt: Join the chat at https://gitter.im/braindecodechat/community
3
   :target: https://gitter.im/braindecodechat/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
4
5
.. image:: https://github.com/braindecode/braindecode/workflows/docs/badge.svg
6
   :target: https://github.com/braindecode/braindecode/actions
7
8
.. image:: https://circleci.com/gh/braindecode/braindecode.svg?style=svg
9
   :target: https://circleci.com/gh/braindecode/braindecode
10
   :alt: Doc build on CircleCI
11
12
.. image:: https://codecov.io/gh/braindecode/braindecode/branch/master/graph/badge.svg
13
   :target: https://codecov.io/gh/braindecode/braindecode
14
   :alt: Code Coverage
15
16
.. |Braindecode| image:: https://user-images.githubusercontent.com/42702466/177958779-b00628aa-9155-4c51-96d1-d8c345aff575.svg
17
.. _braindecode: braindecode.org/
18
19
Braindecode
20
===========
21
22
Braindecode is an open-source Python toolbox for decoding raw electrophysiological brain
23
data with deep learning models. It includes dataset fetchers, data preprocessing and
24
visualization tools, as well as implementations of several deep learning
25
architectures and data augmentations for analysis of EEG, ECoG and MEG.
26
27
For neuroscientists who want to work with deep learning and
28
deep learning researchers who want to work with neurophysiological data.
29
30
31
Installation Braindecode
32
========================
33
34
1. Install pytorch from http://pytorch.org/ (you don't need to install torchvision).
35
36
2. If you want to download EEG datasets from `MOABB <https://github.com/NeuroTechX/moabb>`_, install it:
37
38
.. code-block:: bash
39
40
  pip install moabb
41
42
3. Install latest release of braindecode via pip:
43
44
.. code-block:: bash
45
46
  pip install braindecode
47
48
If you want to install the latest development version of braindecode, please refer to `contributing page <https://github.com/braindecode/braindecode/blob/master/CONTRIBUTING.md>`__
49
50
51
Documentation
52
=============
53
54
Documentation is online under https://braindecode.org, both in the stable and dev versions.
55
56
57
Contributing to Braindecode
58
===========================
59
60
Guidelines for contributing to the library can be found on the braindecode github:
61
62
https://github.com/braindecode/braindecode/blob/master/CONTRIBUTING.md
63
64
Braindecode chat
65
================
66
67
https://gitter.im/braindecodechat/community
68
69
Citing
70
======
71
72
If you use this code in a scientific publication, please cite us as:
73
74
.. code-block:: bibtex
75
76
  @article {HBM:HBM23730,
77
  author = {Schirrmeister, Robin Tibor and Springenberg, Jost Tobias and Fiederer,
78
    Lukas Dominique Josef and Glasstetter, Martin and Eggensperger, Katharina and Tangermann, Michael and
79
    Hutter, Frank and Burgard, Wolfram and Ball, Tonio},
80
  title = {Deep learning with convolutional neural networks for EEG decoding and visualization},
81
  journal = {Human Brain Mapping},
82
  issn = {1097-0193},
83
  url = {http://dx.doi.org/10.1002/hbm.23730},
84
  doi = {10.1002/hbm.23730},
85
  month = {aug},
86
  year = {2017},
87
  keywords = {electroencephalography, EEG analysis, machine learning, end-to-end learning, brain–machine interface,
88
    brain–computer interface, model interpretability, brain mapping},
89
  }
90
91
as well as the `MNE-Python <https://mne.tools>`_ software that is used by braindecode:
92
93
.. code-block:: bibtex
94
95
  @article{10.3389/fnins.2013.00267,
96
  author={Gramfort, Alexandre and Luessi, Martin and Larson, Eric and Engemann, Denis and Strohmeier, Daniel and Brodbeck, Christian and Goj, Roman and Jas, Mainak and Brooks, Teon and Parkkonen, Lauri and Hämäläinen, Matti},
97
  title={{MEG and EEG data analysis with MNE-Python}},
98
  journal={Frontiers in Neuroscience},
99
  volume={7},
100
  pages={267},
101
  year={2013},
102
  url={https://www.frontiersin.org/article/10.3389/fnins.2013.00267},
103
  doi={10.3389/fnins.2013.00267},
104
  issn={1662-453X},
105
  }
106
107
108
109
110
Licensing
111
^^^^^^^^^
112
113
This project is primarily licensed under the BSD-3-Clause License.
114
115
Additional Components
116
~~~~~~~~~~~~~~~~~~~~~
117
118
Some components within this repository are licensed under the Creative Commons Attribution-NonCommercial 4.0 International
119
License.
120
121
Please refer to the ``LICENSE`` and ``NOTICE`` files for more detailed
122
information.