-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
Community Contribution NeededWe want community to contributeWe want community to contributegood first issueGood for newcomersGood for newcomerskeep-openkind/featureNew feature or requestNew feature or requestkind/projectA top level project to be tracked in GitHub ProjectsA top level project to be tracked in GitHub Projectspriority/p1
Description
Is your feature request related to a problem? Please describe.
The current Feast get_historical_features() method requires that users provide an entity dataframe as follows
training_df = store.get_historical_features(
entity_df=entity_df,
feature_refs = [
'drivers_activity:trips_today'
'drivers_profile:rating'
],
)However, many users would like the feature store to provide entities to them for training, instead of having to query or provide entities as part of the entity dataframe.
Describe the solution you'd like
Allow users to specify an existing feature view from which an entity dataframe will be queried.
training_df = store.get_historical_features(
entity_df="drivers_activity",
feature_refs = [
'drivers_activity:trips_today'
'drivers_profile:rating'
],
)With the addition of time range filtering.
training_df = store.get_historical_features(
entity_df="drivers_activity",
feature_refs = [
'drivers_activity:trips_today'
'drivers_profile:rating'
],
from_date=(today - timedelta(days = 7)),
to_date=datetime.now(),
)suminb, vas28r13, andreoliveira-creditas, lara-marinelli, jshellen and 24 moreFelix-neko, andreoliveira-creditas, lara-marinelli, jshellen, harshasatya and 10 more
Metadata
Metadata
Assignees
Labels
Community Contribution NeededWe want community to contributeWe want community to contributegood first issueGood for newcomersGood for newcomerskeep-openkind/featureNew feature or requestNew feature or requestkind/projectA top level project to be tracked in GitHub ProjectsA top level project to be tracked in GitHub Projectspriority/p1
Type
Projects
Status
Todo