@@ -792,7 +792,7 @@ public static StringBuilder GetTextTransformBigramTriCharArgument(string columnN
792
792
}
793
793
794
794
public static SuggestedTransform ConcatColumnsIntoOne ( List < string > columnNames , string concatColumnName ,
795
- Type tranformType , bool isNumeric )
795
+ Type transformType , bool isNumeric )
796
796
{
797
797
StringBuilder columnArgument = new StringBuilder ( ) ;
798
798
StringBuilder columnNameQuoted = new StringBuilder ( ) ;
@@ -843,10 +843,10 @@ public static SuggestedTransform ConcatColumnsIntoOne(List<string> columnNames,
843
843
new SuggestedTransform (
844
844
$ "Concatenate { columnsToConcat } columns into column { concatColumnName } ",
845
845
new SubComponent < IDataTransform , SignatureDataTransform > ( "Concat" ,
846
- new [ ] { arguments } ) , tranformType , new TransformPipelineNode ( epInput ) , - 1 , routingStructure ) ;
846
+ new [ ] { arguments } ) , transformType , new TransformPipelineNode ( epInput ) , - 1 , routingStructure ) ;
847
847
}
848
848
849
- public static SuggestedTransform TextTransformUnigramTriChar ( string srcColumn , string dstColumn , string arg , Type tranformType )
849
+ public static SuggestedTransform TextTransformUnigramTriChar ( string srcColumn , string dstColumn , string arg , Type transformType )
850
850
{
851
851
StringBuilder columnArgument = InferenceHelpers . GetTextTransformUnigramTriCharArgument ( srcColumn , dstColumn ) ;
852
852
@@ -862,10 +862,10 @@ public static SuggestedTransform TextTransformUnigramTriChar(string srcColumn, s
862
862
} ;
863
863
864
864
return TextTransform ( srcColumn , dstColumn , columnArgument . ToString ( ) , "Unigram plus Trichar" ,
865
- tranformType , new TransformPipelineNode ( nodeInput ) ) ;
865
+ transformType , new TransformPipelineNode ( nodeInput ) ) ;
866
866
}
867
867
868
- public static SuggestedTransform TextTransformBigramTriChar ( string srcColumn , string dstColumn , string arg , Type tranformType )
868
+ public static SuggestedTransform TextTransformBigramTriChar ( string srcColumn , string dstColumn , string arg , Type transformType )
869
869
{
870
870
StringBuilder columnArgument = InferenceHelpers . GetTextTransformBigramTriCharArgument ( srcColumn , dstColumn ) ;
871
871
@@ -880,11 +880,11 @@ public static SuggestedTransform TextTransformBigramTriChar(string srcColumn, st
880
880
} ;
881
881
882
882
return TextTransform ( srcColumn , dstColumn , columnArgument . ToString ( ) , "Bigram plus Trichar" ,
883
- tranformType , new TransformPipelineNode ( nodeInput ) ) ;
883
+ transformType , new TransformPipelineNode ( nodeInput ) ) ;
884
884
}
885
885
886
886
public static SuggestedTransform TextTransform ( string srcColumn , string dstColumn , string arg ,
887
- string outputMsg , Type tranformType , TransformPipelineNode pipelineNode )
887
+ string outputMsg , Type transformType , TransformPipelineNode pipelineNode )
888
888
{
889
889
ColumnRoutingStructure . AnnotatedName [ ] columnsSource =
890
890
{ new ColumnRoutingStructure . AnnotatedName { IsNumeric = false , Name = srcColumn } } ;
@@ -898,7 +898,7 @@ public static SuggestedTransform TextTransform(string srcColumn, string dstColum
898
898
") for column '{0}' and output to column '{1}'" ,
899
899
srcColumn , dstColumn ) ,
900
900
new SubComponent < IDataTransform , SignatureDataTransform > ( "Text" , arg ) ,
901
- tranformType , pipelineNode , - 1 , routingStructure ) ;
901
+ transformType , pipelineNode , - 1 , routingStructure ) ;
902
902
}
903
903
}
904
904
0 commit comments