Module learning_orchestra_client.model.scikitlearn
Expand source code
from ._model import Model
class ModelScikitLearn(Model):
def __init__(self, cluster_ip: str):
self.__api_path = "/api/learningOrchestra/v1/model/scikitlearn"
self.__cluster_ip = cluster_ip
super().__init__(cluster_ip, self.__api_path)
Classes
class ModelScikitLearn (cluster_ip: str)
-
Expand source code
class ModelScikitLearn(Model): def __init__(self, cluster_ip: str): self.__api_path = "/api/learningOrchestra/v1/model/scikitlearn" self.__cluster_ip = cluster_ip super().__init__(cluster_ip, self.__api_path)
Ancestors
- learning_orchestra_client.model._model.Model