pub fn parse_supervised_dataset_jsonl(
content: &str,
config: &SupervisedJsonlConfig,
) -> Result<SupervisedDataset, ModelError>Expand description
Parses supervised training samples from JSONL text into a SupervisedDataset.
Each non-empty line must be a JSON object with:
input(or aliasinputs/features): flat sample values matchingconfig.input_shapetarget(or aliastargets/label/labels): flat sample values matchingconfig.target_shape