Module learning_orchestra_client.evaluate.tensorflow

Expand source code
from ._evaluate import Evaluate


class EvaluateTensorflow(Evaluate):
    def __init__(self, cluster_ip: str):
        self.__api_path = "/api/learningOrchestra/v1/evaluate/tensorflow"
        self.__cluster_ip = cluster_ip
        super().__init__(cluster_ip, self.__api_path)

Classes

class EvaluateTensorflow (cluster_ip: str)
Expand source code
class EvaluateTensorflow(Evaluate):
    def __init__(self, cluster_ip: str):
        self.__api_path = "/api/learningOrchestra/v1/evaluate/tensorflow"
        self.__cluster_ip = cluster_ip
        super().__init__(cluster_ip, self.__api_path)

Ancestors

  • learning_orchestra_client.evaluate._evaluate.Evaluate