10 implementations of SaveAsText
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
232void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.Ensemble (1)
Trainer\EnsembleModelParametersBase.cs (1)
130void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.FastTree (2)
FastTree.cs (1)
2971void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
GamModelParameters.cs (1)
356void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.KMeansClustering (1)
KMeansModelParameters.cs (1)
178void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.PCA (1)
PcaTrainer.cs (1)
560void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
193void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Microsoft.ML.StandardTrainers (3)
Standard\LinearModelParameters.cs (1)
352void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
891void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema) => SaveAsTextCore(writer, schema);
Standard\MulticlassClassification\OneVersusAllTrainer.cs (1)
476void ICanSaveInTextFormat.SaveAsText(TextWriter writer, RoleMappedSchema schema)
8 references to SaveAsText
Microsoft.ML.Data (2)
Dirty\PredictorUtils.cs (1)
48textSaver.SaveAsText(writer, schema);
Prediction\Calibrator.cs (1)
237saver.SaveAsText(writer, schema);
Microsoft.ML.FastTree (1)
GamModelParameters.cs (1)
399((ICanSaveInTextFormat)this).SaveAsText(writer, schema);
Microsoft.ML.PCA (1)
PcaTrainer.cs (1)
557((ICanSaveInTextFormat)this).SaveAsText(writer, schema);
Microsoft.ML.StandardTrainers (4)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (3)
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. 898((ICanSaveInTextFormat)this).SaveAsText(writer, schema);
Standard\MulticlassClassification\OneVersusAllTrainer.cs (1)
489saveInText.SaveAsText(writer, schema);