Question 101:
You work for a flight diagnostics company that builds instrumentation for airline manufacturers. Your company’s instrumentation hardware and software are used to detect flight pattern information such as flight path deviation and airline component malfunction. Your team of machine learning specialists has created a model using the Random Cut Forest algorithm to be used to identify anomalies in the data. The streaming data that your instrumentation processes need to be cleaned and transformed via feature engineering before passing it to your inference endpoint. You have created the pre-processing and post-processing steps (for cleaning and feature engineering) in your training process. How can you implement the cleaning and feature engineering steps in your inference processing in the most efficient manner?
Answer options:
A.Execute the pre-processing in a client application before sending the data to your inference endpoint. B.Bundle and export the training pre-processing steps and deploy them to your inference container. C.Bundle and export the training pre-processing steps and deploy them as part of your Inference Pipeline. D.Bundle and export the training pre-processing steps and deploy them to IoT Core on the data emitting devices.