I have a dataset with columns for
- number of items (an integer value)
- weight of the items (a fractional value)
- A product category
- A start time
- An end time
and from this dataset I want to train a data model that given a number of items, weight and category can predict a duration (end time - start time).
How can I transform or set my label column to the duration, so that I get an EstimatorChain
that I can call Fit
on with an IDataView
that I've loaded from CSV?