Module learning_orchestra_client.predict.tensorflow
Expand source code
from ._predict import Predict
class PredictTensorflow(Predict):
def __init__(self, cluster_ip: str):
self.__api_path = "/api/learningOrchestra/v1/predict/tensorflow"
self.__cluster_ip = cluster_ip
super().__init__(cluster_ip, self.__api_path)
Classes
class PredictTensorflow (cluster_ip: str)
-
Expand source code
class PredictTensorflow(Predict): def __init__(self, cluster_ip: str): self.__api_path = "/api/learningOrchestra/v1/predict/tensorflow" self.__cluster_ip = cluster_ip super().__init__(cluster_ip, self.__api_path)
Ancestors
- learning_orchestra_client.predict._predict.Predict