-
Notifications
You must be signed in to change notification settings - Fork 1.9k
FFM XML Doc And Add One Missing Sample File #3374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b500dc6
Update major FFM doc
wschin 2614765
Add missing sample file
wschin b28f583
Fix UIDs
wschin 781248b
Address comments
wschin 1d0a38e
Address a comment
wschin f942a01
Address comments
wschin b335f4f
Fix cref
wschin 908a7ae
Fix ref
wschin 2868fbd
Update src/Microsoft.ML.StandardTrainers/FactorizationMachine/Factori…
wschin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
116 changes: 116 additions & 0 deletions
116
...amples/Microsoft.ML.Samples/Dynamic/Trainers/BinaryClassification/FactorizationMachine.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using Microsoft.ML; | ||
using Microsoft.ML.Data; | ||
|
||
namespace Samples.Dynamic.Trainers.BinaryClassification | ||
{ | ||
public static class FactorizationMachine | ||
{ | ||
public static void Example() | ||
{ | ||
// Create a new context for ML.NET operations. It can be used for exception tracking and logging, | ||
// as a catalog of available operations and as the source of randomness. | ||
// Setting the seed to a fixed number in this example to make outputs deterministic. | ||
var mlContext = new MLContext(seed: 0); | ||
|
||
// Create a list of training data points. | ||
var dataPoints = GenerateRandomDataPoints(1000); | ||
|
||
// Convert the list of data points to an IDataView object, which is consumable by ML.NET API. | ||
var trainingData = mlContext.Data.LoadFromEnumerable(dataPoints); | ||
|
||
// ML.NET doesn't cache data set by default. Therefore, if one reads a data set from a file and accesses it many times, | ||
// it can be slow due to expensive featurization and disk operations. When the considered data can fit into memory, | ||
// a solution is to cache the data in memory. Caching is especially helpful when working with iterative algorithms | ||
// which needs many data passes. | ||
trainingData = mlContext.Data.Cache(trainingData); | ||
|
||
// Define the trainer. | ||
var pipeline = mlContext.BinaryClassification.Trainers.FieldAwareFactorizationMachine(); | ||
|
||
// Train the model. | ||
var model = pipeline.Fit(trainingData); | ||
|
||
// Create testing data. Use different random seed to make it different from training data. | ||
var testData = mlContext.Data.LoadFromEnumerable(GenerateRandomDataPoints(500, seed:123)); | ||
|
||
// Run the model on test data set. | ||
var transformedTestData = model.Transform(testData); | ||
|
||
// Convert IDataView object to a list. | ||
var predictions = mlContext.Data.CreateEnumerable<Prediction>(transformedTestData, reuseRowObject: false).ToList(); | ||
|
||
// Print 5 predictions. | ||
foreach (var p in predictions.Take(5)) | ||
Console.WriteLine($"Label: {p.Label}, Prediction: {p.PredictedLabel}"); | ||
|
||
// Expected output: | ||
// Label: True, Prediction: False | ||
// Label: False, Prediction: False | ||
// Label: True, Prediction: False | ||
// Label: True, Prediction: False | ||
// Label: False, Prediction: False | ||
|
||
// Evaluate the overall metrics. | ||
var metrics = mlContext.BinaryClassification.Evaluate(transformedTestData); | ||
PrintMetrics(metrics); | ||
|
||
// Expected output: | ||
// Accuracy: 0.55 | ||
// AUC: 0.54 | ||
// F1 Score: 0.23 | ||
// Negative Precision: 0.54 | ||
// Negative Recall: 0.92 | ||
// Positive Precision: 0.62 | ||
// Positive Recall: 0.14 | ||
} | ||
|
||
private static IEnumerable<DataPoint> GenerateRandomDataPoints(int count, int seed=0) | ||
{ | ||
var random = new Random(seed); | ||
float randomFloat() => (float)random.NextDouble(); | ||
for (int i = 0; i < count; i++) | ||
{ | ||
var label = randomFloat() > 0.5f; | ||
yield return new DataPoint | ||
{ | ||
Label = label, | ||
// Create random features that are correlated with the label. | ||
// For data points with false label, the feature values are slightly increased by adding a constant. | ||
Features = Enumerable.Repeat(label, 50).Select(x => x ? randomFloat() : randomFloat() + 0.1f).ToArray() | ||
}; | ||
} | ||
} | ||
|
||
// Example with label and 50 feature values. A data set is a collection of such examples. | ||
private class DataPoint | ||
{ | ||
public bool Label { get; set; } | ||
[VectorType(50)] | ||
public float[] Features { get; set; } | ||
} | ||
|
||
// Class used to capture predictions. | ||
private class Prediction | ||
{ | ||
// Original label. | ||
public bool Label { get; set; } | ||
// Predicted label from the trainer. | ||
public bool PredictedLabel { get; set; } | ||
} | ||
|
||
// Pretty-print BinaryClassificationMetrics objects. | ||
private static void PrintMetrics(BinaryClassificationMetrics metrics) | ||
{ | ||
Console.WriteLine($"Accuracy: {metrics.Accuracy:F2}"); | ||
Console.WriteLine($"AUC: {metrics.AreaUnderRocCurve:F2}"); | ||
Console.WriteLine($"F1 Score: {metrics.F1Score:F2}"); | ||
Console.WriteLine($"Negative Precision: {metrics.NegativePrecision:F2}"); | ||
Console.WriteLine($"Negative Recall: {metrics.NegativeRecall:F2}"); | ||
Console.WriteLine($"Positive Precision: {metrics.PositivePrecision:F2}"); | ||
Console.WriteLine($"Positive Recall: {metrics.PositiveRecall:F2}"); | ||
} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
...amples/Microsoft.ML.Samples/Dynamic/Trainers/BinaryClassification/FactorizationMachine.tt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<#@ include file="BinaryClassification.ttinclude"#> | ||
<#+ | ||
string ClassName="FactorizationMachine"; | ||
string Trainer = "FieldAwareFactorizationMachine"; | ||
string TrainerOptions = null; | ||
bool IsCalibrated = true; | ||
bool CacheData = true; | ||
|
||
string LabelThreshold = "0.5f"; | ||
string DataSepValue = "0.1f"; | ||
string OptionsInclude = ""; | ||
string Comments= ""; | ||
|
||
string ExpectedOutputPerInstance= @"// Expected output: | ||
// Label: True, Prediction: False | ||
// Label: False, Prediction: False | ||
// Label: True, Prediction: False | ||
// Label: True, Prediction: False | ||
// Label: False, Prediction: False"; | ||
|
||
string ExpectedOutput = @"// Expected output: | ||
// Accuracy: 0.55 | ||
// AUC: 0.54 | ||
// F1 Score: 0.23 | ||
// Negative Precision: 0.54 | ||
// Negative Recall: 0.92 | ||
// Positive Precision: 0.62 | ||
// Positive Recall: 0.14"; | ||
#> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.