Question 130:
You work for a power tool manufacturer as a machine learning specialist. You work in the battery-powered power tool division, where your team of machine learning specialists and data scientists has been tasked with building a model that predicts the lifespan of particular models of power tools. You have selected the Linear Learner algorithm on which to build your model. You have cleaned and engineered your features for your training and test data. Your feature engineering transformations convert all feature attributes to integers or real numbers. You have also trained your model and have deployed it to Amazon SageMaker Hosting Services. Your training dataset has this structure: | model| power | battery Ah | use pattern | region | country | For your client application inference requests, how would you structure the body argument for your invoke_endpoint call?
Answer options:
A.A string with this value: “547,3.5,1.5,23.4,2,43,1” B.A string with this value: “547,3.5,1.5,23.4,2,43” C.A string with this value: “Quite strike,battery,1.5,frequent,North America,US” D.An array set to these values: [547,3.5,1.5,23.4,2,43] E.A list set to these values: [547,3.5,1.5,23.4,2,43]