Replies: 2 comments 2 replies
-
@matouma @shivdeep-singh-ibm Please see ^^ |
Beta Was this translation helpful? Give feedback.
0 replies
-
instead of building and installing |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am working on running the Ray versions of data-prep-kit pipelines, with one change: I'm using an experimental Charm4Py (/~https://github.com/charmplusplus/charm4py)-based version of the Ray core API in lieu of the official Ray module. The idea is to replace the Ray scheduler with the Charm4Py scheduler, but using the same API. Essentially, this requires me to change
import ray
to
from charm4py import ray
in the data processing library and in code transforms. Then, when rebuilding the data processing library and the transform libraries, I build the data_prep_toolkit wheels (pip install data_prep_toolkit-0.2.4.dev0-py3-none-any.whl) to install the libraries into my virtual environment. I can then use the 'data_processing_ray' and 'data_processing' modules successfully, but I get a ModuleNotFoundError when trying to access a module such as 'dpk_ededup'. How do I properly build and install the preprocessing libraries?
Beta Was this translation helpful? Give feedback.
All reactions