What should you do?
You are working on a Neural Network-based project. The dataset provided to you has columns with different ranges. While preparing the data for model training, you discover that gradient optimization is having difficulty moving weights to a good solution. What should you do?A . Use feature construction to combine the...
What should you do?
You are training a TensorFlow model on a structured data set with 100 billion records stored in several CSV files. You need to improve the input/output execution performance. What should you do?A . Load the data into BigQuery and read the data from BigQuery.B . Load the data into Cloud...
What is the most streamlined and reliable way to perform this validation?
You work for a global footwear retailer and need to predict when an item will be out of stock based on historical inventory data. Customer behavior is highly dynamic since footwear demand is influenced by many different factors. You want to serve models that are trained on all available data,...
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',...
How can you make your production model more accurate?
You are building a model to predict daily temperatures. You split the data randomly and then transformed the training and test datasets. Temperature data for model training is uploaded hourly. During testing, your model performed with 97% accuracy; however, after deploying to production, the model's accuracy dropped to 66%. How...
Which approach should you use?
Your company manages an application that aggregates news articles from many different online sources and sends them to users. You need to build a recommendation model that will suggest articles to readers that are similar to the articles they are currently reading. Which approach should you use?A . Create a...
Register each user with a user ID on the Firebase Cloud Messaging server, which sends a notification when your model predicts that a user's account balance will drop below the $25 threshold
Register each user with a user ID on the Firebase Cloud Messaging server, which sends a notification when your model predicts that a user's account balance will drop below the $25 thresholdView AnswerAnswer: D Explanation: Firebase is designed for exactly this sort of scenario. Also, it would not be possible...
Which data transformation strategy would likely improve the performance of your classifier?
You work for a bank and are building a random forest model for fraud detection. You have a dataset that includes transactions, of which 1% are identified as fraudulent. Which data transformation strategy would likely improve the performance of your classifier?A . Write your data in TFRecords.B . Z-normalize all...
Which technique should you use?
You are building a linear model with over 100 input features, all with values between -1 and 1. You suspect that many features are non-informative. You want to remove the non-informative features from your model while keeping the informative ones in their original form. Which technique should you use?A ....
What should you do?
You manage a team of data scientists who use a cloud-based backend system to submit training jobs. This system has become very difficult to administer, and you want to use a managed service instead. The data scientists you work with use many different frameworks, including Keras, PyTorch, theano. Scikit-team, and...