2

I am looking for a suggestion. Is it possible to implement the data preprocessing steps like missing value imputation, outlier detection, normalization, label encoding in parallel? Can I implement cuda/openmp/mpi programming for data preprocessing?

Thank you.

Encipher
  • 359
  • 1
  • 9

1 Answers1

2

Yes - there are a lot of approaches. Depending on the language you are using / packages.

Assuming Python:

If you have a Nvidia GPU - I would highly recommend the RAPIDs framework, they have plotting, machine learning, dataframes etc...

GooJ
  • 435
  • 2
  • 11