boostrsa 0.0.1.dev8__tar.gz → 0.0.1.dev10__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.
- {boostrsa-0.0.1.dev8/src/boostrsa.egg-info → boostrsa-0.0.1.dev10}/PKG-INFO +16 -2
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/README.md +4 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/setup.py +1 -1
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10/src/boostrsa.egg-info}/PKG-INFO +16 -2
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/LICENSE.txt +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/setup.cfg +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/__init__.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/boostrsa_types.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/__init__.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpgpu/__init__.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpgpu/stats.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpu/__init__.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpu/mask.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpu/matrix.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/__init__.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/basic_operations.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/mask.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/matrix.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/searchlight.py +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/SOURCES.txt +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/dependency_links.txt +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/requires.txt +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/top_level.txt +0 -0
- {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/tests/test_module1.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: boostrsa
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.dev10
|
|
4
4
|
Summary: This is toolbox for boosting calculation speed using GPU
|
|
5
5
|
Home-page: https://github.com/SeojinYoon/boostrsa.git
|
|
6
6
|
Author: seojin
|
|
@@ -14,6 +14,16 @@ License-File: LICENSE.txt
|
|
|
14
14
|
Requires-Dist: numpy
|
|
15
15
|
Requires-Dist: pandas
|
|
16
16
|
Requires-Dist: tqdm
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
Dynamic: requires-dist
|
|
25
|
+
Dynamic: requires-python
|
|
26
|
+
Dynamic: summary
|
|
17
27
|
|
|
18
28
|
|
|
19
29
|
# Boostrsa
|
|
@@ -65,6 +75,10 @@ Please see installation guideline of rsatoolbox (https://github.com/rsagroup/rsa
|
|
|
65
75
|
|
|
66
76
|
pip install boostrsa
|
|
67
77
|
|
|
78
|
+
# Tutorial
|
|
79
|
+
|
|
80
|
+
There are notebooks in the demo directory. Please follow the demos step-by-step. The first demo is for generating simulation data and the second demo is for calculating crossnobis distanced based representational dissimilarity matrices across the whole brain areas. Basically, you are enough to just follow two notebooks - 1_simulated_data.ipynb, 2_searchlight_crossnobis.ipynb
|
|
81
|
+
|
|
68
82
|
# Checked version
|
|
69
83
|
|
|
70
84
|
These are the latest checked environment.
|
|
@@ -48,6 +48,10 @@ Please see installation guideline of rsatoolbox (https://github.com/rsagroup/rsa
|
|
|
48
48
|
|
|
49
49
|
pip install boostrsa
|
|
50
50
|
|
|
51
|
+
# Tutorial
|
|
52
|
+
|
|
53
|
+
There are notebooks in the demo directory. Please follow the demos step-by-step. The first demo is for generating simulation data and the second demo is for calculating crossnobis distanced based representational dissimilarity matrices across the whole brain areas. Basically, you are enough to just follow two notebooks - 1_simulated_data.ipynb, 2_searchlight_crossnobis.ipynb
|
|
54
|
+
|
|
51
55
|
# Checked version
|
|
52
56
|
|
|
53
57
|
These are the latest checked environment.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: boostrsa
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.dev10
|
|
4
4
|
Summary: This is toolbox for boosting calculation speed using GPU
|
|
5
5
|
Home-page: https://github.com/SeojinYoon/boostrsa.git
|
|
6
6
|
Author: seojin
|
|
@@ -14,6 +14,16 @@ License-File: LICENSE.txt
|
|
|
14
14
|
Requires-Dist: numpy
|
|
15
15
|
Requires-Dist: pandas
|
|
16
16
|
Requires-Dist: tqdm
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
Dynamic: requires-dist
|
|
25
|
+
Dynamic: requires-python
|
|
26
|
+
Dynamic: summary
|
|
17
27
|
|
|
18
28
|
|
|
19
29
|
# Boostrsa
|
|
@@ -65,6 +75,10 @@ Please see installation guideline of rsatoolbox (https://github.com/rsagroup/rsa
|
|
|
65
75
|
|
|
66
76
|
pip install boostrsa
|
|
67
77
|
|
|
78
|
+
# Tutorial
|
|
79
|
+
|
|
80
|
+
There are notebooks in the demo directory. Please follow the demos step-by-step. The first demo is for generating simulation data and the second demo is for calculating crossnobis distanced based representational dissimilarity matrices across the whole brain areas. Basically, you are enough to just follow two notebooks - 1_simulated_data.ipynb, 2_searchlight_crossnobis.ipynb
|
|
81
|
+
|
|
68
82
|
# Checked version
|
|
69
83
|
|
|
70
84
|
These are the latest checked environment.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|