From 2e1ed2dc13580d1385c8d158b4e20cdf353bd8ed Mon Sep 17 00:00:00 2001 From: Zeeshan Siddiqui Date: Mon, 1 Jul 2019 05:25:45 -0700 Subject: [PATCH] Internalize tensorflow API and fix #3863 --- src/Microsoft.ML.TensorFlow/TensorFlow/TensorflowUtils.cs | 2 +- src/Microsoft.ML.TensorFlow/TensorFlowModel.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.ML.TensorFlow/TensorFlow/TensorflowUtils.cs b/src/Microsoft.ML.TensorFlow/TensorFlow/TensorflowUtils.cs index 2c71d22f97..8de6347529 100644 --- a/src/Microsoft.ML.TensorFlow/TensorFlow/TensorflowUtils.cs +++ b/src/Microsoft.ML.TensorFlow/TensorFlow/TensorflowUtils.cs @@ -14,7 +14,7 @@ namespace Microsoft.ML.Transforms.TensorFlow { - public static class TensorFlowUtils + internal static class TensorFlowUtils { /// /// Key to access operator's type (a string) in . diff --git a/src/Microsoft.ML.TensorFlow/TensorFlowModel.cs b/src/Microsoft.ML.TensorFlow/TensorFlowModel.cs index f814e387e2..a490965805 100644 --- a/src/Microsoft.ML.TensorFlow/TensorFlowModel.cs +++ b/src/Microsoft.ML.TensorFlow/TensorFlowModel.cs @@ -105,7 +105,7 @@ public TensorFlowEstimator ScoreTensorFlowModel(string[] outputColumnNames, stri /// /// The support for retraining is experimental. /// - public TensorFlowEstimator RetrainTensorFlowModel( + internal TensorFlowEstimator RetrainTensorFlowModel( string[] outputColumnNames, string[] inputColumnNames, string labelColumnName,