-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Adding extensions for Hal learners. More namespace re-ogr. #1370
Conversation
/// <param name="features">The features colum.</param> | ||
/// <param name="weights">The weights column.</param> | ||
/// <param name="advancedSettings">Algorithm advanced settings.</param> | ||
public static OlsLinearRegressionTrainer OrdinaryLeastSquare(this RegressionContext.RegressionTrainers ctx, |
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.
Square [](start = 62, length = 6)
least squares
is the term #Resolved
/// <param name="label">The label column.</param> | ||
/// <param name="features">The features colum.</param> | ||
/// <param name="advancedSettings">Algorithm advanced settings.</param> | ||
public static SymSgdClassificationTrainer SymbolicSgd(this RegressionContext.RegressionTrainers ctx, |
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.
Sgd [](start = 58, length = 3)
expand abbreviation? #Resolved
@@ -24,7 +23,7 @@ | |||
|
|||
[assembly: LoadableClass(typeof(void), typeof(PcaTransform), null, typeof(SignatureEntryPointModule), PcaTransform.LoaderSignature)] | |||
|
|||
namespace Microsoft.ML.Runtime.Data | |||
namespace Microsoft.ML.Transforms.PCA |
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.
Transforms [](start = 23, length = 10)
you might want to refresh this since #1333 is in #Resolved
@@ -15882,546 +15882,6 @@ | |||
"ITrainerOutput" | |||
] | |||
}, | |||
{ | |||
"Name": "Trainers.StochasticDualCoordinateAscentClassifier", |
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.
StochasticDualCoordinateAscentClassifier [](start = 24, length = 40)
why is this gone? #Resolved
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.
/// </summary> | ||
/// <param name="ctx">The <see cref="RegressionContext"/>.</param> | ||
/// <param name="label">The label column.</param> | ||
/// <param name="features">The features colum.</param> |
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.
colum [](start = 48, length = 5)
Column is misspelled - there are a number of places where this is copied. #Resolved
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.
…s to the same namespace. Addressing the other PR issues.
@@ -30,7 +30,7 @@ public void TrainAndPredictHousePriceModelTest() | |||
pipeline.Add(new CategoricalOneHotVectorizer("CategoryFeatures")); | |||
pipeline.Add(new ColumnConcatenator(outputColumn: "Features", | |||
"NumericalFeatures", "CategoryFeatures")); | |||
pipeline.Add(new StochasticDualCoordinateAscentRegressor()); | |||
// pipeline.Add(new StochasticDualCoordinateAscentRegressor()); |
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.
// pi [](start = 10, length = 6)
revert #Resolved
Addresses part of #1318: more namespace re-org and catalog extensions.