-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add release notes for ML.NET 0.1 #37
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# ML.NET 0.1 Release Notes | ||
|
||
ML.NET 0.1 is the first preview release of ML.NET. Thank you for trying it out and we look forward to your feedback! | ||
|
||
### Installation | ||
|
||
You can install ML.NET NuGet from the CLI using: | ||
``` | ||
dotnet add package Microsoft.ML | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
mention prerequisites and supported platforms #Resolved |
||
``` | ||
|
||
From package manager: | ||
``` | ||
Install-Package Microsoft.ML | ||
``` | ||
|
||
### Release Notes | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Please add pointers to samples, documentation and known issues. #Pending |
||
|
||
This initial release contains core ML.NET components for enabling machine learning pipelines: | ||
|
||
* ML Data Structures (e.g. `IDataView`, `LearningPipeline`) | ||
* TextLoader (loading data from a text file into a `LearningPipeline`) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
from a delimited text file #Resolved There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
* Transforms (to get data in the correct format for training): | ||
* Processing/featurizing text: `TextFeaturizer` | ||
* Schema modifcation: `ColumnConcatenator`, `ColumnSelector`, and `ColumnDropper` | ||
* Working with categorical features: `CategoricalOneHotVectorizer` and `CategoricalHashOneHotVectorizer` | ||
* Dealing with missing data: `MissingValueHandler` | ||
* Filters: `RowTakeFilter`, `RowSkipFilter`, `RowRangeFilter` | ||
* Feature selection: `FeatureSelectorByCount` and `FeatureSelectorByMutualInformation` | ||
* Learners (to train machine learning models) for a variety of tasks: | ||
* Binary classification: `FastTreeBinaryClassifier`, `StochasticDualCoordinateAscentBinaryClassifier`, `AveragedPerceptronBinaryClassifier`, `BinaryLogisticRegressor`, `FastForestBinaryClassifier`, `LinearSvmBinaryClassifier`, and `GeneralizedAdditiveModelBinaryClassifier` | ||
* Multiclass classification: `StochasticDualCoordinateAscentClassifier`, `LogisticRegressor`, and`NaiveBayesClassifier` | ||
* Regression: `FastTreeRegressor`, `FastTreeTweedieRegressor`, `StochasticDualCoordinateAscentRegressor`, `OrdinaryLeastSquaresRegressor`, `OnlineGradientDescentRegressor`, `PoissonRegressor`, and `GeneralizedAdditiveModelRegressor` | ||
* Evaluators (to check the model works well): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
To check how well does the model perform #Resolved |
||
* For Binary classification: `BinaryClassificationEvaluator` | ||
* For Multiclass classification: `ClassificationEvaluator` | ||
* For Regression: `RegressionEvaluator` | ||
|
||
Additional components have been included in the repository but cannot be used in `LearningPipeline` yet (this will be updated in future releases). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add statements about what we want people to try? E.g. try to use one of our samples to solve a problem you have, and then tell us how it went?