ComeçarComece de graça

Feature store using Feast

In order to ensure effective development throughout the machine learning lifecycle, it is important to maintain detailed and comprehensive records of resources. Feature stores and model registries are examples of helpful resource records in the pre-modelling and modelling phases. In this exercise, you will implement a feature store using Feast. The predefined patient, Entity, as well as the cp, thalach, ca, and thal features have been loaded for you. ValueType, FeatureStore, and FileSource are all imported from feast. heart_disease_df is also imported.

Este exercício faz parte do curso

End-to-End Machine Learning

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

heart_disease_df.to_parquet("heart_disease.parquet")

# Point File Source to the saved file
data_source = ____(
    path=____,
    event_timestamp_column="timestamp",
    created_timestamp_column="created",
)
Editar e executar o código