
Ultimate access to all questions.
In a machine learning pipeline, you have a dataset with multiple features and labels. Describe the process of creating a feature store table, writing data to it, and training a model with features from the feature store table in Databricks.
A
To create a feature store table, first, define the schema of the table using the StructType function. Then, create a DataFrame with the dataset and the corresponding schema. Use the feature store API to create the table and write the DataFrame to it. To train a model with features from the feature store table, retrieve the required features using the feature store API and use them as input to the model training process.
B
Creating a feature store table and training a model with features from it is not possible in Databricks as it lacks the necessary APIs and functionalities.
C
To create a feature store table, manually write the data to a table in a database and use the database connection to retrieve the features for training the model.
D
Creating a feature store table and training a model with features from it is a manual process that requires custom code for each step.