I have a pipeline step which produces image labels like the one exported from a Data Labeling
project which is a jsonl
file.
This step produces the jsonl
label file in a OutputFileDatasetConfig
and then I think I would do
output_file_dataset_config.read_json_lines_files().register_on_complete("foo")
but this magical read_json_lines_files()
function does not exists.
How can I achieve the same behavior with then currently available API?