Which action should you try first to increase the efficiency of your pipeline?
You are profiling the performance of your TensorFlow model training time and notice a performance issue caused by inefficiencies in the input data pipeline for a single 5 terabyte CSV file dataset on Cloud Storage. You need to optimize the input pipeline performance. Which action should you try first to...
Which metric(s) should you use to monitor the model’s performance?
You work for a large social network service provider whose users post articles and discuss news. Millions of comments are posted online each day, and more than 200 human moderators constantly review comments and flag those that are inappropriate. Your team is building an ML model to help human moderators...
What should you do?
You are an ML engineer at a global shoe store. You manage the ML models for the company's website. You are asked to build a model that will recommend new products to the user based on their purchase behavior and similarity with other users. What should you do?A . Build...
What should you do?
You are developing an ML model intended to classify whether X-Ray images indicate bone fracture risk. You have trained on Api Resnet architecture on Vertex AI using a TPU as an accelerator, however you are unsatisfied with the trainning time and use memory usage. You want to quickly iterate your...
What is the correct way to write the predict request?
You trained a text classification model. You have the following SignatureDefs: What is the correct way to write the predict request?A . data = json.dumps({"signature_name": "serving_default' "instances": [fab', 'be1, 'cd']]})B . data = json dumps({"signature_name": "serving_default"! "instances": [['a', 'b', "c", 'd', 'e', 'f']]})C . data = json.dumps({"signature_name": "serving_default, "instances": [['a',...
What should you do?
You are training an LSTM-based model on Al Platform to summarize text using the following job submission script: You want to ensure that training time is minimized without significantly compromising the accuracy of your model. What should you do?A . Modify the 'epochs' parameterB . Modify the 'scale-tier' parameterC ....
How should you configure the pipeline?
You have a large corpus of written support cases that can be classified into 3 separate categories: Technical Support, Billing Support, or Other Issues. You need to quickly build, test, and deploy a service that will automatically classify future written requests into one of the categories. How should you configure...
What should you do?
You need to train a natural language model to perform text classification on product descriptions that contain millions of examples and 100,000 unique words. You want to preprocess the words individually so that they can be fed into a recurrent neural network. What should you do?A . Create a hot-encoding...
How should you adjust your model to ensure that it converges?
During batch training of a neural network, you notice that there is an oscillation in the loss. How should you adjust your model to ensure that it converges?A . Increase the size of the training batchB . Decrease the size of the training batchC . Increase the learning rate hyperparameterD...
How should you resolve the class imbalance problem?
You were asked to investigate failures of a production line component based on sensor readings. After receiving the dataset, you discover that less than 1% of the readings are positive examples representing failure incidents. You have tried to train several classification models, but none of them converge. How should you...