delta.assets.download_assets

delta.assets.download_assets(load_models: Optional[Union[bool, str]] = None, load_sets: Optional[Union[bool, str]] = None, load_evals: Optional[Union[bool, str]] = None, config_level: Optional[Union[bool, str]] = None) None

Download assets such as latest models, training sets etc

Parameters
load_modelsbool, str, or None, optional

If True, the models will be downloaded from https://drive.google.com/drive/u/0/folders/14EvBCMJIk2LpBCQL-jvsuEwUHNYamyyN into an assets folder in the library install path. If a path str is provided, the models will be downloaded to the folder it points to. If None, an interactive prompt will be used. The default is None.

load_setsbool, str, or None, optional

If True, the models will be downloaded and extracted from https://drive.google.com/drive/u/0/folders/1f2t71M-dkxKzdl-xfzHo195SnKAuisMl into an assets folder in the library install path. If a path str is provided, the models will be downloaded to the folder it points to. If None, an interactive prompt will be used. The default is None.

load_evalsbool, str, or None, optional

If True, the models will be downloaded and extracted from https://drive.google.com/drive/u/0/folders/1f2t71M-dkxKzdl-xfzHo195SnKAuisMl into an assets folder in the library install path. If a path str is provided, the models will be downloaded to the folder it points to. If None, an interactive prompt will be used. The default is None.

config_levelbool, str, or None, optional

If False, no config file is written. If True, same as ‘local’ If ‘local’, new config files will be written under the user’s local config folder, ~/.delta. If ‘global’, the config files will be written to the install folder, to be shared among all users. If a specific dir path is provided, the config files will be written there. If None, and interactive prompt will let the user pick. The default is None.

Returns
None.