geowatch.tasks.fusion.helper_scripts module

Templates for script that will be written to disk for use by a user or another program.

geowatch.tasks.fusion.helper_scripts.train_time_helper_scripts(dpath, train_coco_fpath, vali_coco_fpath)[source]

Example

>>> from geowatch.tasks.fusion.helper_scripts import *
>>> dpath = ub.Path('.')
>>> train_coco_fpath = ub.Path('train.kwcoco.zip')
>>> vali_coco_fpath = ub.Path('vali.kwcoco.zip')
>>> scripts = train_time_helper_scripts(dpath, train_coco_fpath, vali_coco_fpath)
>>> print(f'scripts = {ub.urepr(scripts, nl=3, sv=1)}')