File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
NetworkSecurity/components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2424
2525class DataTransformation :
2626 def __init__ (self , data_validation_artifact : DataValidationArtifact ,
27- data_transforamtion_config : DataTransformationConfig ):
27+ data_transformation_config : DataTransformationConfig ):
2828 try :
2929 self .data_validation_artifact = data_validation_artifact
30- self .data_transformation_config = data_transforamtion_config
30+ self .data_transformation_config = data_transformation_config
3131 except CustomException as e :
3232 raise CustomException (e )
3333
@@ -49,7 +49,7 @@ def get_data_transformer_object(cls) -> Pipeline:
4949 Returns:
5050 A Pipeline object
5151 """
52- logging .info ("Entered get_data_trnasformer_object method of Trnasformation class" )
52+ logging .info ("Entered get_data_transformer_object method of Transformation class" )
5353
5454 try :
5555 imputer :KNNImputer = KNNImputer (** DATA_TRANSFORMATION_IMPUTER_PARAMS )
You can’t perform that action at this time.
0 commit comments