bevhanno

Results 1 comments of bevhanno

I solved the problem by adding the following code to the xgboost inference script "sagemaker_xgb_training.py": ``` def rchop(s, suffix): if suffix and s.endswith(suffix): return s[:-len(suffix)] return s def input_fn(request_body, request_content_type):...