Skip to content

Update release for 0.9 #2067

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 26 commits into from
Jan 8, 2019
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
25f3287
Move Static API extensions to separate assembly (#1930)
abgoswam Jan 3, 2019
1ebb023
Bump version to 0.10 (#2005)
shauheen Jan 3, 2019
21d64aa
Make CompositeSchema not an ISchema (#2001)
wschin Jan 3, 2019
85db282
making GetCoefficientStatistics public (#1979)
sfilipi Jan 3, 2019
1d864c4
Update tests (using Iris dataset) to use new API (#2008)
abgoswam Jan 3, 2019
0d903ab
iteration setup removed (#2011)
Anipik Jan 4, 2019
9a6711b
Onnxtransform - api changes for GPU support (#1922)
jignparm Jan 4, 2019
5c00980
Fixing typo in the FeatureContributionCalculation sample. (#2012)
zeahmed Jan 4, 2019
16bfd54
Updating tests in Microsoft.ML.Tests/Scenarios to new API (#2024)
abgoswam Jan 4, 2019
0cfba68
Convert CSharpAPI based test to EntryPoint based test. (#2020)
codemzs Jan 4, 2019
1319e2c
Remove Legacy dependency in ML.FSharp.Tests (#2021)
artidoro Jan 4, 2019
312f9e4
Remove ColumnType "Is" properties (except IsKey and IsVector) (#2023)
eerhardt Jan 4, 2019
7647e52
fix build break (#2030)
abgoswam Jan 5, 2019
76aab70
Added more documentation and extra CPU path test (#2029)
jignparm Jan 5, 2019
b7f5ba7
Remove collectionsdatasource tests. (#2032)
codemzs Jan 5, 2019
2c91cf3
Remove Legacy dependency from Microsoft.ML.Benchmarks (#2027)
najeeb-kazmi Jan 5, 2019
7caac81
Remove legacy API test that already have coverage and refactor code. …
codemzs Jan 5, 2019
496e185
Remove legacy dependency from TextLoaderTests.cs (#2033)
artidoro Jan 5, 2019
faffd17
New ONNX converter interface and some tests (#2013)
wschin Jan 6, 2019
e2f7075
Remove legacy project and related stuff. (#2043)
codemzs Jan 7, 2019
d9d4b22
Expose internal APIs to components that use them in an internal repo …
yaeldMS Jan 7, 2019
cdd92c2
Merge branch 'master' into release/v09rc2
Jan 8, 2019
54bceac
Fix version for RC2 v 0.9
Jan 8, 2019
4cafb8f
Improve documentation for Feature Contribution Calculation (#2007)
artidoro Jan 7, 2019
7e28d21
Add release notes for ML.NET 0.9 (#2061)
shauheen Jan 8, 2019
30dd0c2
New ML.NET statically typed pipeline Nuget. (#2076)
TomFinley Jan 8, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing typo in the FeatureContributionCalculation sample. (#2012)
  • Loading branch information
zeahmed authored Jan 4, 2019
commit 5c00980abeae594161d0b9ee748d7d0b959962b5
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class FeatureContributionCalculationTransform_RegressionExample
public static void FeatureContributionCalculationTransform_Regression()
{
// Downloading the dataset from github.com/dotnet/machinelearning.
// This will create a sentiment.tsv file in the filesystem.
// This will create a housing.txt file in the filesystem.
// You can open this file, if you want to see the data.
string dataFile = SamplesUtils.DatasetUtils.DownloadHousingRegressionDataset();

Expand Down Expand Up @@ -72,7 +72,7 @@ public static void FeatureContributionCalculationTransform_Regression()
var weights = new VBuffer<float>();
model.Model.GetFeatureWeights(ref weights);

// Let's now walk through the first ten reconds and see which feature drove the values the most
// Let's now walk through the first ten records and see which feature drove the values the most
// Get prediction scores and contributions
var scoringEnumerator = outputData.AsEnumerable<HousingRegressionScoreAndContribution>(mlContext, true).GetEnumerator();
int index = 0;
Expand Down