__init__.py 271 B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. """
  3. @author: yq
  4. @time: 2024/12/5
  5. @desc:
  6. """
  7. from .manager import engine
  8. from .utils import f_project_is_exist, f_data_upload, f_train, f_download_report
  9. __all__ = ['engine', 'f_project_is_exist', 'f_data_upload', 'f_train', 'f_download_report']