ml.net-model-builder

Where to Specify Time to Train in ML.NET

僤鯓⒐⒋嵵緔 提交于 2021-01-06 05:42:40
问题 I'm evaluating ML.NET Model Builder (Preview) 16.1.0.2027905. When I go to train, the Builder lets me specify "Time to train (seconds)" (See Picture): However, when I get to Step#6 and generate the code, I can't seem to find where the "Time to train" is specified... The ML.NET Builder creates this function for me automatically in the ModelBuilder.cs file: public static ITransformer TrainModel(MLContext mlContext, IDataView trainingDataView, IEstimator<ITransformer> trainingPipeline) { Console

Where to Specify Time to Train in ML.NET

孤街浪徒 提交于 2021-01-06 05:42:06
问题 I'm evaluating ML.NET Model Builder (Preview) 16.1.0.2027905. When I go to train, the Builder lets me specify "Time to train (seconds)" (See Picture): However, when I get to Step#6 and generate the code, I can't seem to find where the "Time to train" is specified... The ML.NET Builder creates this function for me automatically in the ModelBuilder.cs file: public static ITransformer TrainModel(MLContext mlContext, IDataView trainingDataView, IEstimator<ITransformer> trainingPipeline) { Console

ML.Net retrain existing model rather than training new model

拟墨画扇 提交于 2019-12-01 17:59:18
问题 I am training a ML.Net machine learning model. I can train it and predict from it, and save/load it from the disk. But I need to be able to load it off the disk, then retrain it, or add to it with new information to improve it over time. Does anyone know if this is possible? I have not found anything in the MS docs of how to do it, but it's a pretty standard thing for ML, so I'd be surprised if it's not possible. Thanks 回答1: This functionality exists in ML.NET but it is not possible with the