Module learning_orchestra_client.transform.scikitlearn
Expand source code
from ._transform import Transform
class TransformScikitLearn(Transform):
def __init__(self, cluster_ip: str):
self.__api_path = "/api/learningOrchestra/v1/transform/scikitlearn"
self.__cluster_ip = cluster_ip
super().__init__(cluster_ip, self.__api_path)
Classes
class TransformScikitLearn (cluster_ip: str)
-
Expand source code
class TransformScikitLearn(Transform): def __init__(self, cluster_ip: str): self.__api_path = "/api/learningOrchestra/v1/transform/scikitlearn" self.__cluster_ip = cluster_ip super().__init__(cluster_ip, self.__api_path)
Ancestors
- learning_orchestra_client.transform._transform.Transform