Files
bo-ptycho/pipelines/__init__.py
T
2026-08-12 22:07:45 +09:00

9 lines
198 B
Python

# from .sobo import sobo_pipeline # depreacated
from .test import test_pipeline
from .batched_sobo import sobo_pipeline
job_types = {
'random+sobo': sobo_pipeline,
'test': test_pipeline,
}