10 implementations of ICanSaveInTextFormat
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
184ICanSaveInTextFormat,
Microsoft.ML.Ensemble (1)
Trainer\EnsembleModelParametersBase.cs (1)
17IPredictorProducing<TOutput>, ICanSaveInTextFormat, ICanSaveSummary
Microsoft.ML.FastTree (2)
FastTree.cs (1)
2775ICanSaveInTextFormat,
GamModelParameters.cs (1)
30IFeatureContributionMapper, ICanSaveInTextFormat, ICanSaveSummary, ICanSaveInIniFormat
Microsoft.ML.KMeansClustering (1)
KMeansModelParameters.cs (1)
31ICanSaveInTextFormat,
Microsoft.ML.PCA (1)
PcaTrainer.cs (1)
417ICanSaveInTextFormat,
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
35public sealed class MatrixFactorizationModelParameters : IPredictor, ICanSaveModel, ICanSaveInTextFormat, ISchemaBindableMapper
Microsoft.ML.StandardTrainers (3)
Standard\LinearModelParameters.cs (1)
46ICanSaveInTextFormat,
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
418ICanSaveInTextFormat,
Standard\MulticlassClassification\OneVersusAllTrainer.cs (1)
248ICanSaveInTextFormat,
21 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.Ensemble (1)
Trainer\EnsembleModelParametersBase.cs (1)
130void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.FastTree (3)
FastTree.cs (1)
2971void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
GamModelParameters.cs (2)
356void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema) 399((ICanSaveInTextFormat)this).SaveAsText(writer, schema);
Microsoft.ML.KMeansClustering (1)
KMeansModelParameters.cs (1)
178void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.PCA (2)
PcaTrainer.cs (2)
557((ICanSaveInTextFormat)this).SaveAsText(writer, schema); 560void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
193void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.StandardTrainers (8)
Standard\LinearModelParameters.cs (1)
352void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (4)
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. 891void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema) => SaveAsTextCore(writer, schema); 898((ICanSaveInTextFormat)this).SaveAsText(writer, schema);
Standard\MulticlassClassification\OneVersusAllTrainer.cs (3)
476void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema) 485var saveInText = preds[i] as ICanSaveInTextFormat;