How to read feature table without target_df / online inference based on filter_condition in databricks feature store
I'm using databricks feature store == 0.6.1. After I register my feature table with `create_feature_table` and write data with `write_Table` I want to read that feature_table based on filter conditions ( may be on time stamp column ) without calling ...
- 2261 Views
- 4 replies
- 1 kudos
Latest Reply
create_training_set is just a simple Select from delta tables. All feature tables are just registered delta tables. Here is an example code that I used to handle that: customer_features_df = spark.sql("SELECT * FROM recommender_system.customer_fea...
- 1 kudos