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.
Files changed (24) hide show
  1. {boostrsa-0.0.1.dev8/src/boostrsa.egg-info → boostrsa-0.0.1.dev10}/PKG-INFO +16 -2
  2. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/README.md +4 -0
  3. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/setup.py +1 -1
  4. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10/src/boostrsa.egg-info}/PKG-INFO +16 -2
  5. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/LICENSE.txt +0 -0
  6. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/setup.cfg +0 -0
  7. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/__init__.py +0 -0
  8. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/boostrsa_types.py +0 -0
  9. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/__init__.py +0 -0
  10. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpgpu/__init__.py +0 -0
  11. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpgpu/stats.py +0 -0
  12. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpu/__init__.py +0 -0
  13. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpu/mask.py +0 -0
  14. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/cpu/matrix.py +0 -0
  15. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/__init__.py +0 -0
  16. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/basic_operations.py +0 -0
  17. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/mask.py +0 -0
  18. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/cores/gpu/matrix.py +0 -0
  19. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa/searchlight.py +0 -0
  20. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/SOURCES.txt +0 -0
  21. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/dependency_links.txt +0 -0
  22. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/requires.txt +0 -0
  23. {boostrsa-0.0.1.dev8 → boostrsa-0.0.1.dev10}/src/boostrsa.egg-info/top_level.txt +0 -0
  24. {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
1
+ Metadata-Version: 2.4
2
2
  Name: boostrsa
3
- Version: 0.0.1.dev8
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.
@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
6
6
 
7
7
  setup(
8
8
  name = "boostrsa",
9
- version = "0.0.1dev8",
9
+ version = "0.0.1dev10",
10
10
  author = "seojin",
11
11
  author_email = "pures1@hanyang.ac.kr",
12
12
  description = "This is toolbox for boosting calculation speed using GPU",
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: boostrsa
3
- Version: 0.0.1.dev8
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