-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Update documentation for LightGBM and add missing binary references to console app. #452
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 4 commits
3f7f02a
fb67580
2604bf3
194e171
d44fb65
d0eb457
599dc92
2eccd02
fb5026a
958e22d
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 |
|---|---|---|
|
|
@@ -127,7 +127,11 @@ protected override void CheckAndUpdateParametersBeforeTraining(IChannel ch, Role | |
| /// </summary> | ||
| public static partial class LightGbm | ||
| { | ||
| [TlcModule.EntryPoint(Name = "Trainers.LightGbmRanker", Desc = "Train an LightGBM ranking model", UserName = LightGbmRankingTrainer.Summary, ShortName = LightGbmRankingTrainer.ShortName)] | ||
| [TlcModule.EntryPoint( | ||
| Name = "Trainers.LightGbmRanker", | ||
| Desc = "Train a LightGBM ranking model. This API requires Microsoft.ML.LightGBM nuget.", | ||
|
||
| UserName = LightGbmRankingTrainer.Summary, | ||
| ShortName = LightGbmRankingTrainer.ShortName)] | ||
| public static CommonOutputs.RankingOutput TrainRanking(IHostEnvironment env, LightGbmArguments input) | ||
| { | ||
| Contracts.CheckValue(env, nameof(env)); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,7 +120,11 @@ protected override void CheckAndUpdateParametersBeforeTraining(IChannel ch, Role | |
| /// </summary> | ||
| public static partial class LightGbm | ||
| { | ||
| [TlcModule.EntryPoint(Name = "Trainers.LightGbmRegressor", Desc = LightGbmRegressorTrainer.Summary, UserName = LightGbmRegressorTrainer.UserNameValue, ShortName = LightGbmRegressorTrainer.ShortName)] | ||
| [TlcModule.EntryPoint( | ||
| Name = "Trainers.LightGbmRegressor", | ||
| Desc = LightGbmRegressorTrainer.Summary + ". This API requires Microsoft.ML.LightGBM nuget.", | ||
|
||
| UserName = LightGbmRegressorTrainer.UserNameValue, | ||
| ShortName = LightGbmRegressorTrainer.ShortName)] | ||
| public static CommonOutputs.RegressionOutput TrainRegression(IHostEnvironment env, LightGbmArguments input) | ||
| { | ||
| Contracts.CheckValue(env, nameof(env)); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
What about
LdaNative? https://github.com/dotnet/machinelearning/tree/master/src/Native/LdaNative. Is that necessary? #ResolvedUh oh!
There was an error while loading. Please reload this page.
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.
Good catch. We will need that if someone uses that via command line.
In reply to: 199242696 [](ancestors = 199242696)