Topic 1 Question 109
A Data Scientist received a set of insurance records, each consisting of a record ID, the final outcome among 200 categories, and the date of the final outcome. Some partial information on claim contents is also provided, but only for a few of the 200 categories. For each outcome category, there are hundreds of records distributed over the past 3 years. The Data Scientist wants to predict how many claims to expect in each category from month to month, a few months in advance. What type of machine learning model should be used?
Classification month-to-month using supervised learning of the 200 categories based on claim contents.
Reinforcement learning using claim IDs and timestamps where the agent will identify how many claims in each category to expect from month to month.
Forecasting using claim IDs and timestamps to identify how many claims in each category to expect from month to month.
Classification with supervised learning of the categories for which partial information on claim contents is provided, and forecasting using claim IDs and timestamps for all other categories.
ユーザの投票
コメント(11)
I think it should be C as the final outcome among 200 categories is already know. No need to build a classification model. It's pure forecasting problem.
👍 23JBX20102021/09/29C is my answer.
No need to do classification. Because you know whether the insurance has a claim or not in the dataset. The claim contents do not provide additional information.
👍 6SophieSu2021/10/03D is correct. Multi-label classification to impute the missing claim contents, then forecasting what we want. C is missing the imputation part.
👍 5kezzzzz2021/10/28
シャッフルモード