nntrf 1.0.0__tar.gz → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nntrf
3
- Version: 1.0.0
3
+ Version: 1.0.1
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,7 @@ 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
17
18
  Dynamic: author
18
19
  Dynamic: author-email
19
20
  Dynamic: classifier
nntrf-1.0.1/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.0
3
+ Version: 1.0.1
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,7 @@ 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
17
18
  Dynamic: author
18
19
  Dynamic: author-email
19
20
  Dynamic: classifier
@@ -2,3 +2,4 @@ numpy>=1.20.1
2
2
  torch<2.0.0,>=1.12.1
3
3
  scikit-fda==0.7.1
4
4
  mtrf
5
+ scipy
@@ -2,7 +2,7 @@ import setuptools
2
2
 
3
3
  setuptools.setup(
4
4
  name="nntrf",
5
- version="1.0.0",
5
+ version="1.0.1",
6
6
  author="Jin Dou",
7
7
  author_email="jindou.bci@gmail.com",
8
8
  long_description_content_type="text/markdown",
@@ -18,6 +18,7 @@ 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"
22
23
  ],
23
- )
24
+ )
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