meegnet 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- meegnet-0.1.1/LICENSE.txt +22 -0
- meegnet-0.1.1/PKG-INFO +7 -0
- meegnet-0.1.1/README.rst +107 -0
- meegnet-0.1.1/meegnet/__init__.py +0 -0
- meegnet-0.1.1/meegnet/algorithms.py +1242 -0
- meegnet-0.1.1/meegnet/dataloaders.py +532 -0
- meegnet-0.1.1/meegnet/misc.py +185 -0
- meegnet-0.1.1/meegnet/ml_parser.py +107 -0
- meegnet-0.1.1/meegnet/network.py +660 -0
- meegnet-0.1.1/meegnet/networks.py +227 -0
- meegnet-0.1.1/meegnet/params.py +58 -0
- meegnet-0.1.1/meegnet/parsing.py +285 -0
- meegnet-0.1.1/meegnet/utils.py +164 -0
- meegnet-0.1.1/meegnet/viz.py +932 -0
- meegnet-0.1.1/meegnet.egg-info/PKG-INFO +7 -0
- meegnet-0.1.1/meegnet.egg-info/SOURCES.txt +18 -0
- meegnet-0.1.1/meegnet.egg-info/dependency_links.txt +1 -0
- meegnet-0.1.1/meegnet.egg-info/top_level.txt +1 -0
- meegnet-0.1.1/setup.cfg +4 -0
- meegnet-0.1.1/setup.py +10 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) [year] [fullname]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
meegnet-0.1.1/PKG-INFO
ADDED
meegnet-0.1.1/README.rst
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
Welcome to MEEGNet!
|
|
2
|
+
===================
|
|
3
|
+
|
|
4
|
+
.. image:: https://img.shields.io/pypi/v/meegnet.svg
|
|
5
|
+
:target: https://pypi.org/project/meegnet/
|
|
6
|
+
|
|
7
|
+
.. image:: https://img.shields.io/pypi/pyversions/meegnet.svg
|
|
8
|
+
:target: https://pypi.org/project/meegnet/
|
|
9
|
+
|
|
10
|
+
This is a suite of tools made available for neuroscience researchers to use a variety of M/EEG neural network architectures on their data.
|
|
11
|
+
|
|
12
|
+
- **Source:** https://github.com/arthurdehgan/meegnet
|
|
13
|
+
- **Bug Reports:** https://github.com/arthurdehgan/meegnet/issues
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
MeegNet Architecture
|
|
17
|
+
--------------------
|
|
18
|
+
|
|
19
|
+
.. image:: https://github.com/arthurdehgan/meegnet/blob/master/architecture.png
|
|
20
|
+
|
|
21
|
+
Other Available Architectures
|
|
22
|
+
-----------------------------
|
|
23
|
+
|
|
24
|
+
The package currently supports the following architectures:
|
|
25
|
+
|
|
26
|
+
* LF-CNN
|
|
27
|
+
* VAR-CNN
|
|
28
|
+
* EEGNet
|
|
29
|
+
|
|
30
|
+
Documentation
|
|
31
|
+
=============
|
|
32
|
+
|
|
33
|
+
For a full documentation of the package as well as tutorials on how to use the library, click the `Readthedocs <https://meegnet.readthedocs.io/en/latest/index.html>`_ link.
|
|
34
|
+
|
|
35
|
+
Features
|
|
36
|
+
========
|
|
37
|
+
|
|
38
|
+
Work in Progress
|
|
39
|
+
|
|
40
|
+
Tutorials
|
|
41
|
+
=========
|
|
42
|
+
|
|
43
|
+
Jupyter Notebook tutorials:
|
|
44
|
+
---------------------------
|
|
45
|
+
|
|
46
|
+
Prepare your data by following the instructions
|
|
47
|
+
`here <https://github.com/arthurdehgan/meegnet/blob/master/notebooks/Prepare%20Data%20Tutorial.ipynb>`__
|
|
48
|
+
|
|
49
|
+
Learn the basics of how to train and evaluate using a pre-made network
|
|
50
|
+
`here <https://github.com/arthurdehgan/meegnet/blob/master/notebooks/Meegnet%20Network%20Training%20Basic%20Tutorial.ipynb>`__
|
|
51
|
+
|
|
52
|
+
Alternatives
|
|
53
|
+
============
|
|
54
|
+
|
|
55
|
+
Maybe this package doesn’t suit your needs, in which case I can
|
|
56
|
+
recommend similar packages with similar goals:
|
|
57
|
+
|
|
58
|
+
* https://mneflow.readthedocs.io/en/latest/
|
|
59
|
+
* https://braindecode.org/stable/index.html
|
|
60
|
+
|
|
61
|
+
References
|
|
62
|
+
==========
|
|
63
|
+
|
|
64
|
+
MEEGNet
|
|
65
|
+
-------
|
|
66
|
+
|
|
67
|
+
Work in Progress
|
|
68
|
+
|
|
69
|
+
LF-CNN or VAR-CNN
|
|
70
|
+
-----------------
|
|
71
|
+
|
|
72
|
+
Zubarev I, Zetter R, Halme HL, Parkkonen L. Adaptive neural network
|
|
73
|
+
classifier for decoding MEG signals. Neuroimage. 2019 May 4;197:425-434.
|
|
74
|
+
`link <https://www.sciencedirect.com/science/article/pii/S1053811919303544?via%3Dihub>`__
|
|
75
|
+
|
|
76
|
+
::
|
|
77
|
+
|
|
78
|
+
@article{Zubarev2019AdaptiveSignals.,
|
|
79
|
+
title = {{Adaptive neural network classifier for decoding MEG signals.}},
|
|
80
|
+
year = {2019},
|
|
81
|
+
journal = {NeuroImage},
|
|
82
|
+
author = {Zubarev, Ivan and Zetter, Rasmus and Halme, Hanna-Leena and Parkkonen, Lauri},
|
|
83
|
+
month = {5},
|
|
84
|
+
pages = {425--434},
|
|
85
|
+
volume = {197},
|
|
86
|
+
url = {https://linkinghub.elsevier.com/retrieve/pii/S1053811919303544 http://www.ncbi.nlm.nih.gov/pubmed/31059799},
|
|
87
|
+
doi = {10.1016/j.neuroimage.2019.04.068},
|
|
88
|
+
issn = {1095-9572},
|
|
89
|
+
pmid = {31059799},
|
|
90
|
+
keywords = {Brain–computer interface, Convolutional neural network, Magnetoencephalography}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
EEGNet
|
|
94
|
+
------
|
|
95
|
+
|
|
96
|
+
::
|
|
97
|
+
|
|
98
|
+
@article{Lawhern2018,
|
|
99
|
+
author={Vernon J Lawhern and Amelia J Solon and Nicholas R Waytowich and Stephen M Gordon and Chou P Hung and Brent J Lance},
|
|
100
|
+
title={EEGNet: a compact convolutional neural network for EEG-based brain–computer interfaces},
|
|
101
|
+
journal={Journal of Neural Engineering},
|
|
102
|
+
volume={15},
|
|
103
|
+
number={5},
|
|
104
|
+
pages={056013},
|
|
105
|
+
url={http://stacks.iop.org/1741-2552/15/i=5/a=056013},
|
|
106
|
+
year={2018}
|
|
107
|
+
}
|
|
File without changes
|