Browse Source

업데이트 'README.md'

Hio-Been Han 2 years ago
parent
commit
f200d8aad9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -127,10 +127,10 @@ After downloading dataset, you can import EEG dataset using the function load_da
 ```python
 # File loading demo
 """ Important notice: Change these directories to fit your local environment """
-bids_path = 'D:/SciData_Bowon_Sleep/data_BIDS_0812/'
-save_directory = 'D:/output_ipynb/'; 
+bids_path = your_local_path # define your own local path where BIDS data are
+save_directory = your_other_local_path # define other local path for figure export
 if not os.path.isdir( save_directory ): os.mkdir( save_directory )
-figure_directory =  '%s/figures/'%save_directory; 
+figure_directory = '%s/figures/'%save_directory; 
 if not os.path.isdir( figure_directory ): os.mkdir( figure_directory )
 figure_dpi = 300