rongguangw commited on
Commit
7d2dfa9
·
verified ·
1 Parent(s): 523e489

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -6,11 +6,11 @@ import pandas as pd
6
 
7
 
8
  description = """
9
- # 🧠 NeuroSynth: MRI-Derived Neuroanatomical Generative Models and Associated Dataset of 18,000 Samples
10
 
11
  <!-- Provide a quick summary of the dataset. -->
12
 
13
- NeuroSynth is a dataset which consists of 18,000 synthetic neuroimaging data samples covering worldwide healthy population across human lifespan.
14
 
15
  ## Dataset Details
16
 
@@ -27,7 +27,7 @@ The dataset has the following characteristics:
27
  * Other browser users can directly click on the "Download" button to save the data
28
  * Download via command line:
29
  ```
30
- wget https://rongguangw-neuro-synth.hf.space/file=dataset/neurosynth_dataset.csv
31
  ```
32
  * You can also customize sex and race for the subjects and sample size by generating online in the below panels. The synthesized data will be showing in the lower right panel, and then, you can save the data by clicking on the "Download" button.
33
  """
@@ -36,7 +36,7 @@ citation = """
36
  ## Citation
37
  ```
38
  @article{chintapalli2024neurosynth,
39
- title={NeuroSynth: MRI-Derived Neuroanatomical Generative Models and Associated Dataset of 18,000 Samples},
40
  author={Chintapalli, Sai Spandana and Wang, Rongguang and Yang, Zhijian and Tassopoulou, Vasiliki and Yu, Fanyang and Bashyam, Vishnu and Erus, Guray and Chaudhari, Pratik and Shou, Haochang and Davatzikos, Christos},
41
  journal={arXiv preprint arXiv:2407.12897},
42
  year={2024}
@@ -44,8 +44,8 @@ citation = """
44
  ```
45
  """
46
 
47
- file_name = "dataset/neurosynth_dataset.csv"
48
- save_name = "dataset/customized_neurosynth.csv"
49
  example_df = pd.read_csv(file_name)
50
 
51
 
 
6
 
7
 
8
  description = """
9
+ # 🧠 Generative models of MRI-derived neuroimaging features and associated dataset of 18000 samples
10
 
11
  <!-- Provide a quick summary of the dataset. -->
12
 
13
+ GenMIND is a dataset which consists of 18,000 synthetic neuroimaging data samples covering worldwide healthy population across human lifespan.
14
 
15
  ## Dataset Details
16
 
 
27
  * Other browser users can directly click on the "Download" button to save the data
28
  * Download via command line:
29
  ```
30
+ wget https://rongguangw-neuro-synth.hf.space/file=dataset/genmind_dataset.csv
31
  ```
32
  * You can also customize sex and race for the subjects and sample size by generating online in the below panels. The synthesized data will be showing in the lower right panel, and then, you can save the data by clicking on the "Download" button.
33
  """
 
36
  ## Citation
37
  ```
38
  @article{chintapalli2024neurosynth,
39
+ title={Generative models of MRI-derived neuroimaging features and associated dataset of 18000 samples},
40
  author={Chintapalli, Sai Spandana and Wang, Rongguang and Yang, Zhijian and Tassopoulou, Vasiliki and Yu, Fanyang and Bashyam, Vishnu and Erus, Guray and Chaudhari, Pratik and Shou, Haochang and Davatzikos, Christos},
41
  journal={arXiv preprint arXiv:2407.12897},
42
  year={2024}
 
44
  ```
45
  """
46
 
47
+ file_name = "dataset/genmind_dataset.csv"
48
+ save_name = "dataset/customized_genmind.csv"
49
  example_df = pd.read_csv(file_name)
50
 
51