-
Notifications
You must be signed in to change notification settings - Fork 1.9k
moving IEstimator, ITransformer ,IDataReader, IDataReaderEstimator, … #2529
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
Conversation
…chemaShape from Microsoft.ML.Core.Data to Microsoft.ML
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.
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.
Just a few weird indentations!
🍧
@@ -27,7 +26,7 @@ | |||
[assembly: LoadableClass(typeof(void), typeof(KMeansPlusPlusTrainer), null, typeof(SignatureEntryPointModule), "KMeans")] | |||
|
|||
namespace Microsoft.ML.Trainers.KMeans | |||
{ | |||
{ |
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.
Wrong indent?
@@ -31,7 +30,7 @@ | |||
[assembly: LoadableClass(typeof(void), typeof(RandomizedPcaTrainer), null, typeof(SignatureEntryPointModule), RandomizedPcaTrainer.LoadNameValue)] | |||
|
|||
namespace Microsoft.ML.Trainers.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.
Wrong indent?
@@ -32,7 +31,7 @@ | |||
[assembly: LoadableClass(typeof(void), typeof(PrincipalComponentAnalysisTransformer), null, typeof(SignatureEntryPointModule), PrincipalComponentAnalysisTransformer.LoaderSignature)] | |||
|
|||
namespace Microsoft.ML.Transforms.Projections | |||
{ | |||
{ |
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.
Wrong indent?
using Microsoft.ML.Data; | ||
using Microsoft.ML.Internal.Calibration; | ||
using Microsoft.ML.Trainers; | ||
using Xunit; | ||
|
||
namespace Microsoft.ML.Tests.TrainerEstimators | ||
{ | ||
{ |
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.
Bad indent?
@@ -15,7 +13,7 @@ | |||
using Xunit.Abstractions; | |||
|
|||
namespace Microsoft.ML.Tests.TrainerEstimators | |||
{ | |||
{ |
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.
Bad indent?
@rogancarr I just noticed the indentation notes. I'll address them on the next pr... |
Codecov Report
@@ Coverage Diff @@
## master #2529 +/- ##
==========================================
- Coverage 71.25% 71.25% -0.01%
==========================================
Files 797 797
Lines 141280 141280
Branches 16115 16115
==========================================
- Hits 100675 100671 -4
- Misses 36147 36148 +1
- Partials 4458 4461 +3
|
moving IEstimator, ITransformer, IDataReader, IDataReaderEstimator, SchemaShape from Microsoft.ML.Core.Data to Microsoft.ML.
Those were the only types in Microsoft.ML.Core.Data.
The change is mechanical, IMO you can just approve if the above sentence is not controversial.
Towards #2326.