Skip to content

Commit

Permalink
Merge pull request #69 from takkii/develop
Browse files Browse the repository at this point in the history
Update.
  • Loading branch information
takkii authored Feb 24, 2024
2 parents 93a5a30 + 5d3431c commit 09b177a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/skl_straight.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def dev_main():
pd_ruby = pd.Series(data_main)
sort_r = pd_ruby.sort_index()
multi_pro = multiprocessing.cpu_count()
ddf = dd.from_pandas(data=sort_r, npartitions=multi_pro)
ddf = from_pandas(data=sort_r, npartitions=multi_pro)
data_array = ddf.to_dask_array(lengths=True)
data = data_array.compute()
data_main = list(map(lambda s: s.rstrip(), data))
Expand Down

0 comments on commit 09b177a

Please sign in to comment.