Skip to content

Commit

Permalink
Minor formatting in CollectionDataSourceTests.cs (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinormont authored and zeahmed committed Jun 12, 2018
1 parent 81d40a9 commit f6c6f5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Microsoft.ML.Tests/CollectionDataSourceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ public void CanTrain()
{
var pipeline = new LearningPipeline();
var data = new List<IrisData>() {
new IrisData { SepalLength = 1f, SepalWidth = 1f ,PetalLength=0.3f, PetalWidth=5.1f, Label=1},
new IrisData { SepalLength = 1f, SepalWidth = 1f ,PetalLength=0.3f, PetalWidth=5.1f, Label=1},
new IrisData { SepalLength = 1.2f, SepalWidth = 0.5f ,PetalLength=0.3f, PetalWidth=5.1f, Label=0}
new IrisData { SepalLength = 1f, SepalWidth = 1f, PetalLength=0.3f, PetalWidth=5.1f, Label=1},
new IrisData { SepalLength = 1f, SepalWidth = 1f, PetalLength=0.3f, PetalWidth=5.1f, Label=1},
new IrisData { SepalLength = 1.2f, SepalWidth = 0.5f, PetalLength=0.3f, PetalWidth=5.1f, Label=0}
};
var collection = CollectionDataSource.Create(data);

Expand Down

0 comments on commit f6c6f5b

Please sign in to comment.