Skip to content

Commit

Permalink
fixing bug in folder names
Browse files Browse the repository at this point in the history
  • Loading branch information
Orieus committed Oct 18, 2023
1 parent 1ef3ef2 commit ed65a1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,8 @@ def sample_sub_set_from_folder(path2texts, selected_cols,
'appln_abstract': 'description'}

path2texts = self.path2corpus / 'corpus'
path2_c1 = path2texts / 'patstat_Kwds3_AI.parquet'
path2_c0 = path2texts / 'patstat_Kwds_AI.parquet'
path2_c1 = path2texts / 'PATSTAT_Kwds3_AI.parquet'
path2_c0 = path2texts / 'PATSTAT_Kwds_AI.parquet'

df_c1 = self._load_parquet(path2_c1, columns, mapping)
df_corpus = self._load_parquet(path2_c0, columns, mapping)
Expand Down

0 comments on commit ed65a1e

Please sign in to comment.