Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
paxcema committed Dec 25, 2023
1 parent f9b05e2 commit 9c63ba0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion type_infer/rule_based/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def infer(self, data: pd.DataFrame) -> TypeInformation:
log.info(f'Using {pool_size} processes to deduct types.')
pool = mp.Pool(processes=pool_size)
# column-wise parallelization # TODO: evaluate switching to row-wise split instead
# TODO: this would be the call to the inference engine -> column in, type out
answer_arr = pool.starmap(self.get_column_data_type, [
(sample_df[x].dropna(), data[x], x, self.config['pct_invalid']) for x in sample_df.columns.values
])
Expand Down

0 comments on commit 9c63ba0

Please sign in to comment.