1 implementation of ICanSaveInTextFormat
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
184ICanSaveInTextFormat,
7 references to ICanSaveInTextFormat
Microsoft.ML.Data (5)
Dirty\PredictorUtils.cs (2)
45var textSaver = predictor as ICanSaveInTextFormat;
Prediction\Calibrator.cs (3)
232void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema) 235var saver = SubModel as ICanSaveInTextFormat;
Microsoft.ML.StandardTrainers (2)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (2)
870/// Actual implementation of <see cref="ICanSaveInTextFormat.SaveAsText(TextWriter, RoleMappedSchema)"/> should happen in derived classes. 889/// Redirect <see cref="ICanSaveInTextFormat.SaveAsText(TextWriter, RoleMappedSchema)"/> call to the right function.