We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given a minimal example:
file_source = prep_file_source(df=simple_dataset_1, timestamp_field="ts_1") as file_source: entity1 = Entity(name="test1", join_keys=["id_join_key"]) feature_view_1 = FeatureView( name="test1", entities=[entity1], source=file_source, ) feature_service = FeatureService(name="fs_1", features=[feature_view_1[["string_col"]]])
The feature service should only contain a single feature, string_col.
string_col
The feature service should contains all the features for the feature view.
test_update_feature_services_with_inferred_features exhibits this behaviour
test_update_feature_services_with_inferred_features
Thanks to the bugreport: https://tectonfeast.slack.com/archives/C01MSKCMB37/p1653998863644589
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
Given a minimal example:
The feature service should only contain a single feature,
string_col
.Current Behavior
The feature service should contains all the features for the feature view.
Steps to reproduce
test_update_feature_services_with_inferred_features
exhibits this behaviourThanks to the bugreport: https://tectonfeast.slack.com/archives/C01MSKCMB37/p1653998863644589
The text was updated successfully, but these errors were encountered: