module of experiment downloader
Classes
Download
Download(source_file, target_file, storage_interface)
Download class for the dashboard
Source code in niceml/experiments/experimentdownloader.py
| def __init__(
self, source_file: str, target_file: str, storage_interface: StorageInterface
):
self.source_file = source_file
self.target_file = target_file
self.storage_interface = storage_interface
|
ExperimentDownloader
ExperimentDownloader(
experiments,
storage_interface,
local_store_path,
remote_exp_path,
)
Class to download experiment data
Source code in niceml/experiments/experimentdownloader.py
| def __init__(
self,
experiments: List[ExperimentData],
storage_interface: StorageInterface,
local_store_path: str,
remote_exp_path: str,
):
self.experiments = experiments
self.storage_interface = storage_interface
self.local_store_path = local_store_path
self.remote_exp_path = remote_exp_path
|