nimare 0.4.2__py3-none-any.whl

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 (119) hide show
  1. benchmarks/__init__.py +0 -0
  2. benchmarks/bench_cbma.py +57 -0
  3. nimare/__init__.py +45 -0
  4. nimare/_version.py +21 -0
  5. nimare/annotate/__init__.py +21 -0
  6. nimare/annotate/cogat.py +213 -0
  7. nimare/annotate/gclda.py +924 -0
  8. nimare/annotate/lda.py +147 -0
  9. nimare/annotate/text.py +75 -0
  10. nimare/annotate/utils.py +87 -0
  11. nimare/base.py +217 -0
  12. nimare/cli.py +124 -0
  13. nimare/correct.py +462 -0
  14. nimare/dataset.py +685 -0
  15. nimare/decode/__init__.py +33 -0
  16. nimare/decode/base.py +115 -0
  17. nimare/decode/continuous.py +462 -0
  18. nimare/decode/discrete.py +753 -0
  19. nimare/decode/encode.py +110 -0
  20. nimare/decode/utils.py +44 -0
  21. nimare/diagnostics.py +510 -0
  22. nimare/estimator.py +139 -0
  23. nimare/extract/__init__.py +19 -0
  24. nimare/extract/extract.py +466 -0
  25. nimare/extract/utils.py +295 -0
  26. nimare/generate.py +331 -0
  27. nimare/io.py +667 -0
  28. nimare/meta/__init__.py +39 -0
  29. nimare/meta/cbma/__init__.py +6 -0
  30. nimare/meta/cbma/ale.py +951 -0
  31. nimare/meta/cbma/base.py +947 -0
  32. nimare/meta/cbma/mkda.py +1361 -0
  33. nimare/meta/cbmr.py +970 -0
  34. nimare/meta/ibma.py +1683 -0
  35. nimare/meta/kernel.py +501 -0
  36. nimare/meta/models.py +1199 -0
  37. nimare/meta/utils.py +494 -0
  38. nimare/nimads.py +492 -0
  39. nimare/reports/__init__.py +24 -0
  40. nimare/reports/base.py +664 -0
  41. nimare/reports/default.yml +123 -0
  42. nimare/reports/figures.py +651 -0
  43. nimare/reports/report.tpl +160 -0
  44. nimare/resources/__init__.py +1 -0
  45. nimare/resources/atlases/Harvard-Oxford-LICENSE +93 -0
  46. nimare/resources/atlases/HarvardOxford-cort-maxprob-thr25-2mm.nii.gz +0 -0
  47. nimare/resources/database_file_manifest.json +142 -0
  48. nimare/resources/english_spellings.csv +1738 -0
  49. nimare/resources/filenames.json +32 -0
  50. nimare/resources/neurosynth_laird_studies.json +58773 -0
  51. nimare/resources/neurosynth_stoplist.txt +396 -0
  52. nimare/resources/nidm_pain_dset.json +1349 -0
  53. nimare/resources/references.bib +541 -0
  54. nimare/resources/semantic_knowledge_children.txt +325 -0
  55. nimare/resources/semantic_relatedness_children.txt +249 -0
  56. nimare/resources/templates/MNI152_2x2x2_brainmask.nii.gz +0 -0
  57. nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_T1w.nii.gz +0 -0
  58. nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_desc-brain_mask.nii.gz +0 -0
  59. nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_T1w.nii.gz +0 -0
  60. nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_desc-brain_mask.nii.gz +0 -0
  61. nimare/results.py +225 -0
  62. nimare/stats.py +276 -0
  63. nimare/tests/__init__.py +1 -0
  64. nimare/tests/conftest.py +229 -0
  65. nimare/tests/data/amygdala_roi.nii.gz +0 -0
  66. nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz +0 -0
  67. nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz +0 -0
  68. nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz +0 -0
  69. nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt +100 -0
  70. nimare/tests/data/neurosynth_dset.json +2868 -0
  71. nimare/tests/data/neurosynth_laird_studies.json +58773 -0
  72. nimare/tests/data/nidm_pain_dset.json +1349 -0
  73. nimare/tests/data/nimads_annotation.json +1 -0
  74. nimare/tests/data/nimads_studyset.json +1 -0
  75. nimare/tests/data/test_baseline.txt +2 -0
  76. nimare/tests/data/test_pain_dataset.json +1278 -0
  77. nimare/tests/data/test_pain_dataset_multiple_contrasts.json +1242 -0
  78. nimare/tests/data/test_sleuth_file.txt +18 -0
  79. nimare/tests/data/test_sleuth_file2.txt +10 -0
  80. nimare/tests/data/test_sleuth_file3.txt +5 -0
  81. nimare/tests/data/test_sleuth_file4.txt +5 -0
  82. nimare/tests/data/test_sleuth_file5.txt +5 -0
  83. nimare/tests/test_annotate_cogat.py +32 -0
  84. nimare/tests/test_annotate_gclda.py +86 -0
  85. nimare/tests/test_annotate_lda.py +27 -0
  86. nimare/tests/test_dataset.py +99 -0
  87. nimare/tests/test_decode_continuous.py +132 -0
  88. nimare/tests/test_decode_discrete.py +92 -0
  89. nimare/tests/test_diagnostics.py +168 -0
  90. nimare/tests/test_estimator_performance.py +385 -0
  91. nimare/tests/test_extract.py +46 -0
  92. nimare/tests/test_generate.py +247 -0
  93. nimare/tests/test_io.py +294 -0
  94. nimare/tests/test_meta_ale.py +298 -0
  95. nimare/tests/test_meta_cbmr.py +295 -0
  96. nimare/tests/test_meta_ibma.py +240 -0
  97. nimare/tests/test_meta_kernel.py +209 -0
  98. nimare/tests/test_meta_mkda.py +234 -0
  99. nimare/tests/test_nimads.py +21 -0
  100. nimare/tests/test_reports.py +110 -0
  101. nimare/tests/test_stats.py +101 -0
  102. nimare/tests/test_transforms.py +272 -0
  103. nimare/tests/test_utils.py +200 -0
  104. nimare/tests/test_workflows.py +221 -0
  105. nimare/tests/utils.py +126 -0
  106. nimare/transforms.py +907 -0
  107. nimare/utils.py +1367 -0
  108. nimare/workflows/__init__.py +14 -0
  109. nimare/workflows/base.py +189 -0
  110. nimare/workflows/cbma.py +165 -0
  111. nimare/workflows/ibma.py +108 -0
  112. nimare/workflows/macm.py +77 -0
  113. nimare/workflows/misc.py +65 -0
  114. nimare-0.4.2.dist-info/LICENSE +21 -0
  115. nimare-0.4.2.dist-info/METADATA +124 -0
  116. nimare-0.4.2.dist-info/RECORD +119 -0
  117. nimare-0.4.2.dist-info/WHEEL +5 -0
  118. nimare-0.4.2.dist-info/entry_points.txt +2 -0
  119. nimare-0.4.2.dist-info/top_level.txt +2 -0
@@ -0,0 +1,160 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <meta name="generator" content="Docutils 0.12: http://docutils.sourceforge.net/" />
7
+ <title></title>
8
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
9
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
10
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
11
+ <style type="text/css">
12
+ .sub-report-title {}
13
+ .sub-title {}
14
+ .sub-sub-title {}
15
+
16
+ h1 { padding-top: 35px; }
17
+ h2 { padding-top: 20px; }
18
+ h3 { padding-top: 15px; }
19
+
20
+ .elem-desc {}
21
+ .elem-caption {
22
+ margin-top: 15px
23
+ margin-bottom: 0;
24
+ }
25
+ .elem-filename {}
26
+
27
+ div.elem-image {
28
+ width: 100%;
29
+ page-break-before:always;
30
+ }
31
+
32
+ .elem-image object.png-reportlet {
33
+ width: 100%;
34
+ padding-bottom: 5px;
35
+ }
36
+ body {
37
+ padding: 65px 10px 10px;
38
+ }
39
+
40
+ .igraph-container {
41
+ position: relative;
42
+ overflow: hidden;
43
+ width: 100%;
44
+ padding-top: 50%;
45
+ }
46
+
47
+ .igraph {
48
+ position: absolute;
49
+ border: none;
50
+ top: 0;
51
+ left: 0;
52
+ bottom: 0;
53
+ right: 0;
54
+ width: 100%;
55
+ height: 100%;
56
+ }
57
+
58
+ .boiler-html {
59
+ font-family: "Bitstream Charter", "Georgia", Times;
60
+ margin: 20px 25px;
61
+ padding: 10px;
62
+ background-color: #F8F9FA;
63
+ }
64
+
65
+ div#boilerplate pre {
66
+ margin: 20px 25px;
67
+ padding: 10px;
68
+ background-color: #F8F9FA;
69
+ }
70
+
71
+ #errors div, #errors p {
72
+ padding-left: 1em;
73
+ }
74
+ </style>
75
+ </head>
76
+ <body>
77
+
78
+
79
+ <nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
80
+ <div class="collapse navbar-collapse">
81
+ <ul class="navbar-nav">
82
+ {% for sub_report in sections %}
83
+ {% if sub_report.isnested %}
84
+ <li class="nav-item dropdown">
85
+ <a class="nav-link dropdown-toggle" id="navbar{{ sub_report.name }}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#">{{ sub_report.name }}</a>
86
+ <div class="dropdown-menu" aria-labelledby="navbar{{ sub_report.name }}">
87
+ {% for run_report in sub_report.reportlets %}
88
+ {% if run_report.title %}
89
+ <a class="dropdown-item" href="#{{run_report.name}}">{{run_report.title}}</a>
90
+ {% endif %}
91
+ {% endfor %}
92
+ </div>
93
+ </li>
94
+ {% else %}
95
+ <li class="nav-item"><a class="nav-link" href="#{{sub_report.name}}">{{sub_report.name}}</a></li>
96
+ {% endif %}
97
+ {% endfor %}
98
+ <li class="nav-item"><a class="nav-link" href="#boilerplate">Methods</a></li>
99
+ </ul>
100
+ </div>
101
+ </nav>
102
+ <noscript>
103
+ <h1 class="text-danger"> The navigation menu uses Javascript. Without it this report might not work as expected </h1>
104
+ </noscript>
105
+
106
+ {% for sub_report in sections %}
107
+ {% if sub_report.reportlets %}
108
+ <div id="{{ sub_report.name }}">
109
+ <h1 class="sub-report-title">{{ sub_report.name }}</h1>
110
+ {% for run_report in sub_report.reportlets %}
111
+ <div id="{{run_report.name}}">
112
+ {% if run_report.title %}<h2 class="sub-report-group">{{ run_report.title }}</h2>{% endif %}
113
+ {% if run_report.subtitle %}<h3 class="sub-title">{{ run_report.subtitle }}</h3>{% endif %}
114
+ {% if run_report.description %}<p class="elem-desc">{{ run_report.description }}</p>{% endif %}
115
+ {% for elem in run_report.components %}
116
+ {% if elem[0] %}
117
+ {% if elem[1] %}<p class="elem-caption">{{ elem[1] }}</p>{% endif %}
118
+ {% if run_report.subsubtitle %}<h4 class="sub-sub-title">{{ run_report.subsubtitle }}</h4>{% endif %}
119
+ {{ elem[0] }}
120
+ {% endif %}
121
+ {% endfor %}
122
+ </div>
123
+ {% endfor %}
124
+ </div>
125
+ {% endif %}
126
+ {% endfor %}
127
+
128
+ <div id="boilerplate">
129
+ <h1 class="sub-report-title">Methods</h1>
130
+ {% if boilerplate %}
131
+ <p>We kindly ask to report results preprocessed with this tool using the following
132
+ boilerplate.</p>
133
+ <ul class="nav nav-tabs" id="myTab" role="tablist">
134
+ {% for b in boilerplate %}
135
+ <li class="nav-item">
136
+ <a class="nav-link {% if b[0] == 0 %}active{% endif %}" id="{{ b[1] }}-tab" data-toggle="tab" href="#{{ b[1] }}" role="tab" aria-controls="{{ b[1] }}" aria-selected="{% if b[0] == 0 %}true{%else%}false{% endif %}">{{ b[1] }}</a>
137
+ </li>
138
+ {% endfor %}
139
+ </ul>
140
+ <div class="tab-content" id="myTabContent">
141
+ {% for b in boilerplate %}
142
+ <div class="tab-pane fade {% if b[0] == 0 %}active show{% endif %}" id="{{ b[1] }}" role="tabpanel" aria-labelledby="{{ b[1] }}-tab">{{ b[2] }}</div>
143
+ {% endfor %}
144
+ </div>
145
+ {% else %}
146
+ <p class="text-danger">Failed to generate the boilerplate</p>
147
+ {% endif %}
148
+ </div>
149
+
150
+ <script type="text/javascript">
151
+ function toggle(id) {
152
+ var element = document.getElementById(id);
153
+ if(element.style.display == 'block')
154
+ element.style.display = 'none';
155
+ else
156
+ element.style.display = 'block';
157
+ }
158
+ </script>
159
+ </body>
160
+ </html>
@@ -0,0 +1 @@
1
+ """Resources for NiMARE."""
@@ -0,0 +1,93 @@
1
+ FMRIB Software Library, Release 6.0 (c) 2018, The University of Oxford
2
+ (the "Software")
3
+
4
+ The Software remains the property of Oxford University Innovation
5
+ ("the University").
6
+
7
+ The Software is distributed "AS IS" under this Licence solely for
8
+ non-commercial use in the hope that it will be useful, but in order
9
+ that the University as a charitable foundation protects its assets for
10
+ the benefit of its educational and research purposes, the University
11
+ makes clear that no condition is made or to be implied, nor is any
12
+ warranty given or to be implied, as to the accuracy of the Software,
13
+ or that it will be suitable for any particular purpose or for use
14
+ under any specific conditions. Furthermore, the University disclaims
15
+ all responsibility for the use which is made of the Software. It
16
+ further disclaims any liability for the outcomes arising from using
17
+ the Software.
18
+
19
+ The Licensee agrees to indemnify the University and hold the
20
+ University harmless from and against any and all claims, damages and
21
+ liabilities asserted by third parties (including claims for
22
+ negligence) which arise directly or indirectly from the use of the
23
+ Software or the sale of any products based on the Software.
24
+
25
+ No part of the Software may be reproduced, modified, transmitted or
26
+ transferred in any form or by any means, electronic or mechanical,
27
+ without the express permission of the University. The permission of
28
+ the University is not required if the said reproduction, modification,
29
+ transmission or transference is done without financial return, the
30
+ conditions of this Licence are imposed upon the receiver of the
31
+ product, and all original and amended source code is included in any
32
+ transmitted product. You may be held legally responsible for any
33
+ copyright infringement that is caused or encouraged by your failure to
34
+ abide by these terms and conditions.
35
+
36
+ You are not permitted under this Licence to use this Software
37
+ commercially. Use for which any financial return is received shall be
38
+ defined as commercial use, and includes (1) integration of all or part
39
+ of the source code or the Software into a product for sale or license
40
+ by or on behalf of Licensee to third parties or (2) use of the
41
+ Software or any derivative of it for research with the final aim of
42
+ developing software products for sale or license to a third party or
43
+ (3) use of the Software or any derivative of it for research with the
44
+ final aim of developing non-software products for sale or license to a
45
+ third party, or (4) use of the Software to provide any service to an
46
+ external organisation for which payment is received. If you are
47
+ interested in using the Software commercially, please contact Oxford
48
+ University Innovation ("OUI"), the technology transfer company of the
49
+ University, to negotiate a licence. Contact details are:
50
+ fsl@innovation.ox.ac.uk quoting Reference Project 9564, FSL.
51
+
52
+
53
+ -------------------------------------------------------------------
54
+
55
+ The Standard Space Atlases
56
+
57
+ The Cerebellum, Harvard-Oxford, JHU, Juelich, Striatum and Thalamus atlases,
58
+ whilst not being the property of Oxford, are released under the terms of the
59
+ main FSL licence above, at the request of their owners. These atlases
60
+ should therefore not be used for commercial purposes; for such
61
+ purposes please contact the primary co-ordinator for the relevant
62
+ atlas:
63
+
64
+ Harvard-Oxford: steve@fmrib.ox.ac.uk
65
+ JHU: susumu@mri.jhu.edu
66
+ Juelich: S.Eickhoff@fz-juelich.de
67
+ Thalamus: behrens@fmrib.ox.ac.uk
68
+ Cerebellum: j.diedrichsen@bangor.ac.uk
69
+ Striatum: andri.tziortzi@gmail.com
70
+
71
+ -------------------------------------------------------------------
72
+
73
+ FSLView
74
+
75
+ FSLView sources are released under the terms of the GPLv2
76
+ (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html). FSLView
77
+ binaries use Qt (http://qt.nokia.com) which is released under LGPLv2.1.
78
+ The FSLView binaries are released under the GPL, with the added
79
+ exception that we also give permission to link this program with the Qt
80
+ non-commercial edition, and distribute the resulting executable,
81
+ without including the source code for the Qt non-commercial edition in
82
+ the source distribution.
83
+
84
+ FSLView is distributed "AS IS" under this Licence in the hope that it
85
+ will be useful, but in order that the University as a charitable
86
+ foundation protects its assets for the benefit of its educational and
87
+ research purposes, the University makes clear that no condition is
88
+ made or to be implied, nor is any warranty given or to be implied, as
89
+ to the accuracy of the Software, or that it will be suitable for any
90
+ particular purpose or for use under any specific conditions.
91
+ Furthermore, the University disclaims all responsibility for the use
92
+ which is made of the Software. It further disclaims any liability for
93
+ the outcomes arising from using the Software.
@@ -0,0 +1,142 @@
1
+ [
2
+ {
3
+ "coordinates": "data-neurosynth_version-3_coordinates.tsv.gz",
4
+ "metadata": "data-neurosynth_version-3_metadata.tsv.gz",
5
+ "features": [
6
+ {
7
+ "features": "data-neurosynth_version-3_vocab-terms_source-abstract_type-tfidf_features.npz",
8
+ "vocabulary": "data-neurosynth_version-3_vocab-terms_vocabulary.txt"
9
+ }
10
+ ]
11
+ },
12
+ {
13
+ "coordinates": "data-neurosynth_version-4_coordinates.tsv.gz",
14
+ "metadata": "data-neurosynth_version-4_metadata.tsv.gz",
15
+ "features": [
16
+ {
17
+ "features": "data-neurosynth_version-4_vocab-terms_source-abstract_type-tfidf_features.npz",
18
+ "vocabulary": "data-neurosynth_version-4_vocab-terms_vocabulary.txt"
19
+ }
20
+ ]
21
+ },
22
+ {
23
+ "coordinates": "data-neurosynth_version-5_coordinates.tsv.gz",
24
+ "metadata": "data-neurosynth_version-5_metadata.tsv.gz",
25
+ "features": [
26
+ {
27
+ "features": "data-neurosynth_version-5_vocab-terms_source-abstract_type-tfidf_features.npz",
28
+ "vocabulary": "data-neurosynth_version-5_vocab-terms_vocabulary.txt"
29
+ }
30
+ ]
31
+ },
32
+ {
33
+ "coordinates": "data-neurosynth_version-6_coordinates.tsv.gz",
34
+ "metadata": "data-neurosynth_version-6_metadata.tsv.gz",
35
+ "features": [
36
+ {
37
+ "features": "data-neurosynth_version-6_vocab-terms_source-abstract_type-tfidf_features.npz",
38
+ "vocabulary": "data-neurosynth_version-6_vocab-terms_vocabulary.txt"
39
+ },
40
+ {
41
+ "features": "data-neurosynth_version-6_vocab-LDA50_source-abstract_type-weight_features.npz",
42
+ "vocabulary": "data-neurosynth_version-6_vocab-LDA50_vocabulary.txt",
43
+ "keys": "data-neurosynth_version-6_vocab-LDA50_keys.tsv",
44
+ "metadata": "data-neurosynth_version-6_vocab-LDA50_metadata.json"
45
+ },
46
+ {
47
+ "features": "data-neurosynth_version-6_vocab-LDA100_source-abstract_type-weight_features.npz",
48
+ "vocabulary": "data-neurosynth_version-6_vocab-LDA100_vocabulary.txt",
49
+ "keys": "data-neurosynth_version-6_vocab-LDA100_keys.tsv",
50
+ "metadata": "data-neurosynth_version-6_vocab-LDA100_metadata.json"
51
+ },
52
+ {
53
+ "features": "data-neurosynth_version-6_vocab-LDA200_source-abstract_type-weight_features.npz",
54
+ "vocabulary": "data-neurosynth_version-6_vocab-LDA200_vocabulary.txt",
55
+ "keys": "data-neurosynth_version-6_vocab-LDA200_keys.tsv",
56
+ "metadata": "data-neurosynth_version-6_vocab-LDA200_metadata.json"
57
+ },
58
+ {
59
+ "features": "data-neurosynth_version-6_vocab-LDA400_source-abstract_type-weight_features.npz",
60
+ "vocabulary": "data-neurosynth_version-6_vocab-LDA400_vocabulary.txt",
61
+ "keys": "data-neurosynth_version-6_vocab-LDA400_keys.tsv",
62
+ "metadata": "data-neurosynth_version-6_vocab-LDA400_metadata.json"
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "coordinates": "data-neurosynth_version-7_coordinates.tsv.gz",
68
+ "metadata": "data-neurosynth_version-7_metadata.tsv.gz",
69
+ "features": [
70
+ {
71
+ "features": "data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz",
72
+ "vocabulary": "data-neurosynth_version-7_vocab-terms_vocabulary.txt"
73
+ },
74
+ {
75
+ "features": "data-neurosynth_version-7_vocab-LDA50_source-abstract_type-weight_features.npz",
76
+ "vocabulary": "data-neurosynth_version-7_vocab-LDA50_vocabulary.txt",
77
+ "keys": "data-neurosynth_version-7_vocab-LDA50_keys.tsv",
78
+ "metadata": "data-neurosynth_version-7_vocab-LDA50_metadata.json"
79
+ },
80
+ {
81
+ "features": "data-neurosynth_version-7_vocab-LDA100_source-abstract_type-weight_features.npz",
82
+ "vocabulary": "data-neurosynth_version-7_vocab-LDA100_vocabulary.txt",
83
+ "keys": "data-neurosynth_version-7_vocab-LDA100_keys.tsv",
84
+ "metadata": "data-neurosynth_version-7_vocab-LDA100_metadata.json"
85
+ },
86
+ {
87
+ "features": "data-neurosynth_version-7_vocab-LDA200_source-abstract_type-weight_features.npz",
88
+ "vocabulary": "data-neurosynth_version-7_vocab-LDA200_vocabulary.txt",
89
+ "keys": "data-neurosynth_version-7_vocab-LDA200_keys.tsv",
90
+ "metadata": "data-neurosynth_version-7_vocab-LDA200_metadata.json"
91
+ },
92
+ {
93
+ "features": "data-neurosynth_version-7_vocab-LDA400_source-abstract_type-weight_features.npz",
94
+ "vocabulary": "data-neurosynth_version-7_vocab-LDA400_vocabulary.txt",
95
+ "keys": "data-neurosynth_version-7_vocab-LDA400_keys.tsv",
96
+ "metadata": "data-neurosynth_version-7_vocab-LDA400_metadata.json"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "coordinates": "data-neuroquery_version-1_coordinates.tsv.gz",
102
+ "metadata": "data-neuroquery_version-1_metadata.tsv.gz",
103
+ "features": [
104
+ {
105
+ "features": "data-neuroquery_version-1_vocab-neuroquery6308_source-combined_type-tfidf_features.npz",
106
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery6308_vocabulary.txt"
107
+ },
108
+ {
109
+ "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-abstract_type-count_features.npz",
110
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt"
111
+ },
112
+ {
113
+ "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-body_type-count_features.npz",
114
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt"
115
+ },
116
+ {
117
+ "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-keywords_type-count_features.npz",
118
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt"
119
+ },
120
+ {
121
+ "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-title_type-count_features.npz",
122
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt"
123
+ },
124
+ {
125
+ "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-abstract_type-count_features.npz",
126
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt"
127
+ },
128
+ {
129
+ "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-body_type-count_features.npz",
130
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt"
131
+ },
132
+ {
133
+ "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-keywords_type-count_features.npz",
134
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt"
135
+ },
136
+ {
137
+ "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-title_type-count_features.npz",
138
+ "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt"
139
+ }
140
+ ]
141
+ }
142
+ ]