Skip to content
New issue

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

feat: Adding support for Native Python feature transformations for On Demand Feature Views #4045

Merged
merged 16 commits into from
Mar 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bug fix
Signed-off-by: Francisco Javier Arceo <franciscojavierarceo@users.noreply.github.com>
  • Loading branch information
franciscojavierarceo committed Mar 26, 2024
commit f8fd94915556bd1cf6bd51987bf56e13c7337ed3
2 changes: 0 additions & 2 deletions sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2134,8 +2134,6 @@ def _augment_response_with_on_demand_transforms(
feature_vector = transformed_features[feature]
proto_values.append(
python_values_to_proto_values(feature_vector, ValueType.UNKNOWN)
python_values_to_proto_values(
transformed_features_df[feature].values, ValueType.UNKNOWN
)

odfv_result_names |= set(selected_subset)
Expand Down
Loading