Skip to content

Commit

Permalink
Internalize LpNorm column options. (#3078)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomFinley authored Mar 25, 2019
1 parent beb67a1 commit d38a35e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Microsoft.ML.Transforms/GcnTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private static VersionInfo GetVersionInfo()
/// <summary>
/// The objects describing how the transformation is applied on the input data.
/// </summary>
public IReadOnlyCollection<LpNormNormalizingEstimatorBase.ColumnOptionsBase> Columns => _columns.AsReadOnly();
internal IReadOnlyCollection<LpNormNormalizingEstimatorBase.ColumnOptionsBase> Columns => _columns.AsReadOnly();
private readonly LpNormNormalizingEstimatorBase.ColumnOptionsBase[] _columns;

private static (string outputColumnName, string inputColumnName)[] GetColumnPairs(LpNormNormalizingEstimatorBase.ColumnOptionsBase[] columns)
Expand Down Expand Up @@ -671,7 +671,7 @@ public enum NormFunction : byte
/// <summary>
/// Describes base class for one column pair.
/// </summary>
public abstract class ColumnOptionsBase
internal abstract class ColumnOptionsBase
{
/// <summary>
/// Name of the column resulting from the transformation of <see cref="InputColumnName"/>.
Expand Down Expand Up @@ -812,7 +812,7 @@ public sealed class LpNormNormalizingEstimator : LpNormNormalizingEstimatorBase
/// <summary>
/// Describes how the transformer handles one column pair.
/// </summary>
public sealed class ColumnOptions : ColumnOptionsBase
internal sealed class ColumnOptions : ColumnOptionsBase
{
/// <summary>
/// Describes how the transformer handles one column pair.
Expand Down Expand Up @@ -868,7 +868,7 @@ public sealed class GlobalContrastNormalizingEstimator : LpNormNormalizingEstima
/// <summary>
/// Describes how the transformer handles one Gcn column pair.
/// </summary>
public sealed class ColumnOptions : ColumnOptionsBase
internal sealed class ColumnOptions : ColumnOptionsBase
{
/// <summary>
/// Describes how the transformer handles one Gcn column pair.
Expand Down

0 comments on commit d38a35e

Please sign in to comment.