Skip to content

Commit b9449ce

Browse files
committed
files paths upgraded
1 parent 6a060f2 commit b9449ce

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

files_path_variables.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@
22
from pathlib import Path
33

44
#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")
810
splitted_data_folder = Path(corr_dir,"all_cleaned_text")
911
corrected_data_folder = Path(corr_dir,"all_cleaned_corr_text")
1012
manually_corrected_data_folder = Path(corr_dir,"all_cleaned_manually_corr_text")
1113
neighborhoods_dir = Path(corr_dir, "neighborhoods")
1214

15+
#Path to all metadata file
16+
metadata_file = Path(metadata_dir, "all_codes.csv.current")
17+
1318
#Path to rules file
1419
path_to_rules_file = Path(corr_dir, "rules_for_values.csv")
1520

0 commit comments

Comments
 (0)