Skip to content

Conversation

@yaeldekel
Copy link

Fixes #969 .
Related to issue #4693 .

@yaeldekel yaeldekel requested a review from a team as a code owner January 23, 2020 15:50

namespace Microsoft.ML.Transforms
{
internal sealed class MissingValueDroppingEstimator : TrivialEstimator<MissingValueDroppingTransformer>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this useful in other cases? Do we need to add this to the catalog and make it public?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it is - seems to be something very specific to Ngram extraction.


In reply to: 370393234 [](ancestors = 370393234)


internal static IDataTransform Create(IHostEnvironment env, Options options, IDataView input) =>
(IDataTransform)CreateTransfomer(env, options, input).Transform(input);
(IDataTransform)CreateEstimator(env, options, SchemaShape.Create(input.Schema)).Fit(input).Transform(input)/* CreateTransfomer(env, options, input).Transform(input)*/;
Copy link
Contributor

@harishsk harishsk Jan 23, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: Can you please remove the commented code? #Resolved

Copy link
Contributor

@harishsk harishsk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@yaeldekel yaeldekel merged commit 3b1785c into dotnet:master Jan 30, 2020
@ghost ghost locked as resolved and limited conversation to collaborators Mar 19, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

TestEstimatorCore fails when training on EmptyDataView for the listed transforms.

3 participants