Module learning_orchestra_client.explore.tensorflow
Expand source code
from ._explore import Explore
class ExploreTensorflow(Explore):
def __init__(self, cluster_ip: str):
self.__api_path = "/api/learningOrchestra/v1/explore/tensorflow"
self.__cluster_ip = cluster_ip
super().__init__(cluster_ip, self.__api_path)
Classes
class ExploreTensorflow (cluster_ip: str)
-
Expand source code
class ExploreTensorflow(Explore): def __init__(self, cluster_ip: str): self.__api_path = "/api/learningOrchestra/v1/explore/tensorflow" self.__cluster_ip = cluster_ip super().__init__(cluster_ip, self.__api_path)
Ancestors
- learning_orchestra_client.explore._explore.Explore