-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Lockdown Microsoft.ML.TensorFlow public surface #2312
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
Codecov Report
@@ Coverage Diff @@
## master #2312 +/- ##
=========================================
Coverage ? 71.14%
=========================================
Files ? 779
Lines ? 140271
Branches ? 16046
=========================================
Hits ? 99791
Misses ? 36029
Partials ? 4451
|
would the text in the doc apply to the estimator and the extension methods? #Resolved Refers to: src/Microsoft.ML.TensorFlow/TensorflowTransform.cs:37 in d1abbb8. [](commit_id = d1abbb8, deletion_comment = False) |
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.
it will need a special presentation method then, as it is the internals of this object are not simple to understand In reply to: 458827750 [](ancestors = 458827750) Refers to: src/Microsoft.ML.TensorFlow/TensorflowTransform.cs:149 in d1abbb8. [](commit_id = d1abbb8, deletion_comment = False) |
/// Score or Retrain a tensorflow model (based on setting of the <see cref="TensorFlowTransformer.Arguments.ReTrain"/>) setting. | ||
/// The model is specified in the <see cref="TensorFlowTransformer.Arguments.ModelLocation"/>. | ||
/// Score or Retrain a tensorflow model (based on setting of the <see cref="TensorFlowTransformer.Options.ReTrain"/>) setting. | ||
/// The model is specified in the <see cref="TensorFlowTransformer.Options.ModelLocation"/>. |
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.
Options [](start = 75, length = 7)
Please rerun locally RegenerateEntryPointCatalog and upload changes in core_ep-list.tsv to this PR. #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.
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.
@@ -433,7 +433,7 @@ public void TensorFlowTransformMNISTLRTrainingTest() | |||
|
|||
var pipe = mlContext.Transforms.Categorical.OneHotEncoding("OneHotLabel", "Label") | |||
.Append(mlContext.Transforms.Normalize(new NormalizingEstimator.MinMaxColumn("Features", "Placeholder"))) | |||
.Append(new TensorFlowEstimator(mlContext, new TensorFlowTransformer.Arguments() | |||
.Append(new TensorFlowEstimator(mlContext, new TensorFlowTransformer.Options() |
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.
TensorFlowEstimator [](start = 32, length = 19)
If you look on other peoples PR, i think we tend to change direct calls to estimators to mlContext.Transforms.TensorFlow #Resolved
fixes #2280