File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 2
2
from pathlib import Path
3
3
4
4
#Load all necessary paths
5
- root_dir = Path ("/media/odrec/TOSHIBA EXT/files_nlp_deeplecture_2/" )
6
- pdf_dir = Path ("/media/odrec/TOSHIBA EXT/Korpus PFDs/" )
7
- corr_dir = Path (root_dir , "corr" )
5
+ root_dir = Path ("/media/odrec/TOSHIBA EXT/" )
6
+ files_dir = Path (root_dir , "files_nlp_deeplecture_2/" )
7
+ pdf_dir = Path (root_dir , "Korpus PFDs/" )
8
+ metadata_dir = Path (files_dir , "csv" )
9
+ corr_dir = Path (files_dir , "corr" )
8
10
splitted_data_folder = Path (corr_dir ,"all_cleaned_text" )
9
11
corrected_data_folder = Path (corr_dir ,"all_cleaned_corr_text" )
10
12
manually_corrected_data_folder = Path (corr_dir ,"all_cleaned_manually_corr_text" )
11
13
neighborhoods_dir = Path (corr_dir , "neighborhoods" )
12
14
15
+ #Path to all metadata file
16
+ metadata_file = Path (metadata_dir , "all_codes.csv.current" )
17
+
13
18
#Path to rules file
14
19
path_to_rules_file = Path (corr_dir , "rules_for_values.csv" )
15
20
You can’t perform that action at this time.
0 commit comments