repository repository ¶ Repository of niceml pipelines. Functions¶ get_job_list ¶ get_job_list() returns a list of all niceml jobs Source code in niceml/dagster/jobs/repository.py 14 15 16def get_job_list() -> List[JobDefinition]: """returns a list of all niceml jobs""" return [job_train, job_eval, job_copy_exp, job_data_generation] niceml_repository ¶ niceml_repository() returns a list of all niceml jobs Source code in niceml/dagster/jobs/repository.py 19 20 21 22@repository def niceml_repository() -> List[JobDefinition]: """returns a list of all niceml jobs""" return get_job_list()