You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import os
-
- resource_dir = os.path.dirname(__file__)
-
- DEFAULT_PIPELINE_DIR = os.path.join(resource_dir, 'resources', 'default_pipeline.json')
-
- def load_default_pipeline(): # pragma: no cover
- from axolotl.utils import pipeline as pipeline_utils
- pipeline = pipeline_utils.load_pipeline(DEFAULT_PIPELINE_DIR)
- return pipeline
|