nntrf 1.0.0__tar.gz → 1.0.2__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.
- {nntrf-1.0.0 → nntrf-1.0.2}/PKG-INFO +3 -1
- nntrf-1.0.2/README.md +31 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf.egg-info/PKG-INFO +3 -1
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf.egg-info/requires.txt +2 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/setup.py +5 -3
- nntrf-1.0.0/README.md +0 -8
- {nntrf-1.0.0 → nntrf-1.0.2}/LICENSE +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/__init__.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/loss.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/metrics.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/models/__init__.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/models/composite.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/models/linear.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/models/nonlinear.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf/utils.py +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf.egg-info/SOURCES.txt +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf.egg-info/dependency_links.txt +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/nntrf.egg-info/top_level.txt +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/setup.cfg +0 -0
- {nntrf-1.0.0 → nntrf-1.0.2}/tests/testNonLinear.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: nntrf
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Home-page: https://github.com/powerfulbean/nnTRF
|
5
5
|
Author: Jin Dou
|
6
6
|
Author-email: jindou.bci@gmail.com
|
@@ -14,6 +14,8 @@ Requires-Dist: numpy>=1.20.1
|
|
14
14
|
Requires-Dist: torch<2.0.0,>=1.12.1
|
15
15
|
Requires-Dist: scikit-fda==0.7.1
|
16
16
|
Requires-Dist: mtrf
|
17
|
+
Requires-Dist: scipy
|
18
|
+
Requires-Dist: mkl-devel
|
17
19
|
Dynamic: author
|
18
20
|
Dynamic: author-email
|
19
21
|
Dynamic: classifier
|
nntrf-1.0.2/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# nnTRF - neural network Temporal Response Function
|
2
|
+
|
3
|
+
This package is an artificial neural network implementation for temporal responses function modelling of brain signal. It implement the linear time-invariant TRF which can be solved with ridge regression ([mTRF-Toolbox](https://github.com/mickcrosse/mTRF-Toolbox), [mTRFpy](https://github.com/powerfulbean/mTRFpy)) or boosting ([Eelbrain
|
4
|
+
](https://github.com/christianbrodbeck/Eelbrain)), the [dynamic TRF](https://doi.org/10.1101/2024.08.26.609779) framework and mode!
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
You can get the stable release from PyPI:
|
9
|
+
```sh
|
10
|
+
pip install nntrf
|
11
|
+
```
|
12
|
+
|
13
|
+
Or get the latest version from this repo:
|
14
|
+
```sh
|
15
|
+
pip install git+https://github.com/powerfulbean/nnTRF.git
|
16
|
+
```
|
17
|
+
## Citing nnTRF
|
18
|
+
Dou, J., Anderson, A. J., White, A. S., Norman-Haignere, S. V., & Lalor, E. C. (2024). Dynamic modeling of EEG responses to natural speech reveals earlier processing of predictable words. bioRxiv, 2024-08.
|
19
|
+
```
|
20
|
+
@article {Dou2024.08.26.609779,
|
21
|
+
author = {Dou, Jin and Anderson, Andrew J. and White, Aaron S. and Norman-Haignere, Samuel V. and Lalor, Edmund C.},
|
22
|
+
title = {Dynamic modeling of EEG responses to natural speech reveals earlier processing of predictable words},
|
23
|
+
elocation-id = {2024.08.26.609779},
|
24
|
+
year = {2024},
|
25
|
+
doi = {10.1101/2024.08.26.609779},
|
26
|
+
publisher = {Cold Spring Harbor Laboratory},
|
27
|
+
URL = {https://www.biorxiv.org/content/early/2024/08/26/2024.08.26.609779},
|
28
|
+
eprint = {https://www.biorxiv.org/content/early/2024/08/26/2024.08.26.609779.full.pdf},
|
29
|
+
journal = {bioRxiv}
|
30
|
+
}
|
31
|
+
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: nntrf
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Home-page: https://github.com/powerfulbean/nnTRF
|
5
5
|
Author: Jin Dou
|
6
6
|
Author-email: jindou.bci@gmail.com
|
@@ -14,6 +14,8 @@ Requires-Dist: numpy>=1.20.1
|
|
14
14
|
Requires-Dist: torch<2.0.0,>=1.12.1
|
15
15
|
Requires-Dist: scikit-fda==0.7.1
|
16
16
|
Requires-Dist: mtrf
|
17
|
+
Requires-Dist: scipy
|
18
|
+
Requires-Dist: mkl-devel
|
17
19
|
Dynamic: author
|
18
20
|
Dynamic: author-email
|
19
21
|
Dynamic: classifier
|
@@ -2,7 +2,7 @@ import setuptools
|
|
2
2
|
|
3
3
|
setuptools.setup(
|
4
4
|
name="nntrf",
|
5
|
-
version="1.0.
|
5
|
+
version="1.0.2",
|
6
6
|
author="Jin Dou",
|
7
7
|
author_email="jindou.bci@gmail.com",
|
8
8
|
long_description_content_type="text/markdown",
|
@@ -18,6 +18,8 @@ setuptools.setup(
|
|
18
18
|
"numpy>=1.20.1",
|
19
19
|
"torch>=1.12.1,<2.0.0",
|
20
20
|
"scikit-fda==0.7.1",
|
21
|
-
"mtrf"
|
21
|
+
"mtrf",
|
22
|
+
"scipy",
|
23
|
+
"mkl-devel"
|
22
24
|
],
|
23
|
-
)
|
25
|
+
)
|
nntrf-1.0.0/README.md
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
# nnTRF - neural network Temporal Response Function
|
2
|
-
|
3
|
-
This package is an artificial neural network implementation for temporal responses function modelling of brain signal. It implement the linear time-invariant TRF which can be solved with ridge regression ([mTRF-Toolbox](https://github.com/mickcrosse/mTRF-Toolbox), [mTRFpy](https://github.com/powerfulbean/mTRFpy)) or boosting ([Eelbrain
|
4
|
-
](https://github.com/christianbrodbeck/Eelbrain)), the [dynamic TRF](https://doi.org/10.1101/2024.08.26.609779) framework and mode!
|
5
|
-
|
6
|
-
## Installation
|
7
|
-
|
8
|
-
coming soon ....
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|