DSA-C03試験無料問題集「Snowflake SnowPro Advanced: Data Scientist Certification 認定」
You are developing a model to predict equipment failure in a factory using sensor data stored in Snowflake. The data is partitioned by 'EQUIPMENT ID' and 'TIMESTAMP. After initial model training and cross-validation using the following code snippet:

You observe significant performance variations across different equipment groups when evaluating on out-of-sample data'. Which of the following strategies could you employ to address this issue within the Snowflake environment to improve the model's generalization ability across all equipment?

You observe significant performance variations across different equipment groups when evaluating on out-of-sample data'. Which of the following strategies could you employ to address this issue within the Snowflake environment to improve the model's generalization ability across all equipment?
正解:B,C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
A data scientist is building a model in Snowflake to predict customer churn. They have a dataset with features like 'age', 'monthly_spend', 'contract_length', and 'complaints'. The target variable is 'churned' (0 or 1). They decide to use a Logistic Regression model. However, initial performance is poor. Which of the following actions could MOST effectively improve the model's performance, considering best practices for Supervised Learning in a Snowflake environment focused on scalable and robust deployment?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
A data science team is evaluating different methods for summarizing lengthy customer support tickets using Snowflake Cortex. The goal is to generate concise summaries that capture the key issues and resolutions. Which of the following approaches is/are appropriate for achieving this goal within Snowflake, considering the need for efficiency, cost-effectiveness, and scalability? (Select all that apply)
正解:A,C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You are building a machine learning pipeline in Snowflake using Snowpark Python. You have completed the data preparation and feature engineering steps and now need to train a model. You want to track the performance of different model versions and hyperparameters using MLflow. You are considering these deployment strategies. Which of the deployment strategies allows automatic logging of metrics, parameters, and model artifacts to MLflow for each training run without requiring explicit MLflow logging code?
正解:E
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You are building a machine learning model using Snowflake data to predict customer churn. Your dataset includes a 'CUSTOMER TYPE column with the following possible values: 'New', 'Returning', and 'VIP'. You need to perform one-hot encoding on this column. Which of the following Snowflake SQL queries correctly implements one-hot encoding for the 'CUSTOMER TYPE column, creating separate binary columns for each customer type ('IS NEW', 'IS RETURNING', 'IS VIP')?


正解:C,D,E
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You are evaluating a binary classification model's performance using the Area Under the ROC Curve (AUC). You have the following predictions and actual values. What steps can you take to reliably calculate this in Snowflake, and which snippet represents a crucial part of that calculation? (Assume tables 'predictions' with columns 'predicted_probability' (FLOAT) and 'actual_value' (BOOLEAN); TRUE indicates positive class, FALSE indicates negative class). Which of the below code snippet should be used to calculate the 'True positive Rate' and 'False positive Rate' for different thresholds
正解:B,D
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
A financial institution wants to use Snowflake Cortex to analyze customer reviews and feedback extracted from various online sources to gauge customer sentiment towards their new mobile banking application. The goal is to identify positive, negative, and neutral sentiments, and also extract key phrases that drive these sentiments. Which of the following steps represent a viable workflow for achieving this using Snowflake Cortex and related functionalities?
正解:B
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You are deploying a machine learning model to Snowflake using a Python UDF. The model predicts customer churn based on a set of features. You need to handle missing values in the input data'. Which of the following methods is the MOST efficient and robust way to handle missing values within the UDF, assuming performance is critical and you don't want to modify the underlying data tables?
正解:B
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You have trained a complex Random Forest model in Snowflake to predict loan default risk. You wish to understand the individual and combined effects of 'credit_score' and 'debt_to_income_ratio' on the predicted probability of default. Which approach is MOST suitable for visualizing and interpreting these relationships?
正解:D
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You have a binary classification model deployed in Snowflake to predict customer churn. The model outputs a probability score between 0 and 1. You've calculated the following confusion matrix on a holdout set: I I Predicted Positive I Predicted Negative I --1 1 Actual Positive | 80 | 20 | I Actual Negative | 10 | 90 | What are the Precision, Recall, and Accuracy for this model, and what do these metrics tell you about the model's performance? SELECT statement given for true and false condition (True Positive, True Negative, False Positive, False Negative)
正解:A
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You are working on a customer churn prediction model and are using Snowpark Feature Store. One of your features, is updated daily. You notice that your model's performance degrades over time, likely due to stale feature values being used during inference. You want to ensure that the model always uses the most up-to-date feature values. Which of the following strategies would be the MOST effective way to address this issue using Snowpark Feature Store and avoid model staleness during online inference?
正解:C
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
You have successfully trained a binary classification model using Snowpark ML and deployed it as a UDF in Snowflake. The UDF takes several input features and returns the predicted probability of the positive class. You need to continuously monitor the model's performance in production to detect potential data drift or concept drift. Which of the following methods and metrics, when used together, would provide the MOST comprehensive and reliable assessment of model performance and drift in a production environment? (Select TWO)
正解:B,E
解答を投票する
解説: (GoShiken メンバーにのみ表示されます)