src/chug/task_pipeline/pipeline_gtparse.py [36:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        cfg: DataTaskImageTextCfg,
):
    """ Create pipeline for dual image & text input pipelines.
    FIXME add support for caption target for caption tasks or separate pipe?
    """
    handler = get_error_handler(cfg.error_handler)
    pipe = []

    if cfg.filter_valid:
        filter_fn = partial(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/chug/task_pipeline/pipeline_image_text.py [33:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        cfg: DataTaskImageTextCfg,
):
    """ Create pipeline for dual image & text input pipelines.
    """
    handler = get_error_handler(cfg.error_handler)
    pipe = []

    # FIXME add support for caption target for caption tasks or use a separate pipe?

    if cfg.filter_valid:
        filter_fn = partial(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



