Hi
I'm wondering if it's possible to add set_memory_request or set_memory_limit to a Op that is created from func_to_container_op's factory.
Thanks
I'm wondering if it's possible to add set_memory_request or set_memory_limit to a Op that is created from func_to_container_op's factory.
Yes, you do it the same way (as the object you get is the same - ContainerOp instance).
You should set the memory request on the task object which you get when you call a component with some arguments.
train_task = train_classifier(training_data=....).set_memory_request(...)
Most helpful comment
Yes, you do it the same way (as the object you get is the same -
ContainerOpinstance).You should set the memory request on the task object which you get when you call a component with some arguments.