Module learning_orchestra_client.dataset.csv
Expand source code
from ._dataset import Dataset
class DatasetCsv(Dataset):
def __init__(self, cluster_ip: str):
self.__api_path = "/api/learningOrchestra/v1/dataset/csv"
self.__cluster_ip = cluster_ip
super().__init__(cluster_ip, self.__api_path)
Classes
class DatasetCsv (cluster_ip: str)
-
Expand source code
class DatasetCsv(Dataset): def __init__(self, cluster_ip: str): self.__api_path = "/api/learningOrchestra/v1/dataset/csv" self.__cluster_ip = cluster_ip super().__init__(cluster_ip, self.__api_path)
Ancestors
- learning_orchestra_client.dataset._dataset.Dataset