-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation for LightGBM and add missing binary references t…
…o console app. (#452) * Add LightGBM to the entrypoint manifest and references to trainers and transform including native code to console command line binary. * Add documentation to use LightGBM nuget for LightGBM APIs.
- Loading branch information
Showing
16 changed files
with
7,555 additions
and
4,857 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -8,4 +8,4 @@ public static class Console | |
{ | ||
public static int Main(string[] args) => Maml.Main(args); | ||
} | ||
} | ||
} |
This file contains 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 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 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 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 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 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 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,58 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
namespace Microsoft.ML.Trainers | ||
{ | ||
/// <summary> | ||
/// This API requires Microsoft.ML.LightGBM nuget. | ||
/// </summary> | ||
/// <example> | ||
/// <code> | ||
/// pipeline.Add(new LightGbmBinaryClassifier() { NumLeaves = 5, NumBoostRound = 5, MinDataPerLeaf = 2 }) | ||
/// </code> | ||
/// </example> | ||
public sealed partial class LightGbmBinaryClassifier | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// This API requires Microsoft.ML.LightGBM nuget. | ||
/// </summary> | ||
/// <example> | ||
/// <code> | ||
/// pipeline.Add(new LightGbmClassifier() { NumLeaves = 5, NumBoostRound = 5, MinDataPerLeaf = 2 }) | ||
/// </code> | ||
/// </example> | ||
public sealed partial class LightGbmClassifier | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// This API requires Microsoft.ML.LightGBM nuget. | ||
/// </summary> | ||
/// <example> | ||
/// <code> | ||
/// pipeline.Add(new LightGbmRanker() { NumLeaves = 5, NumBoostRound = 5, MinDataPerLeaf = 2 }) | ||
/// </code> | ||
/// </example> | ||
public sealed partial class LightGbmRanker | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// This API requires Microsoft.ML.LightGBM nuget. | ||
/// </summary> | ||
/// <example> | ||
/// <code> | ||
/// pipeline.Add(new LightGbmRegressor() { NumLeaves = 5, NumBoostRound = 5, MinDataPerLeaf = 2 }) | ||
/// </code> | ||
/// </example> | ||
public sealed partial class LightGbmRegressor | ||
{ | ||
|
||
} | ||
} |
This file contains 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
Oops, something went wrong.