Skip to content

Instantly share code, notes, and snippets.

@mdfarragher
Created November 7, 2019 14:23
Show Gist options
  • Save mdfarragher/1f94a037764938a94ea969132bcd44b7 to your computer and use it in GitHub Desktop.
Save mdfarragher/1f94a037764938a94ea969132bcd44b7 to your computer and use it in GitHub Desktop.
// run the pipeline and show the first 10 records
var model = pipeline.Fit(data);
var transformedData = model.Transform(data);
var preview = transformedData.Preview(maxRows: 10);
display(preview);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment