-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Since the DAG was introduced in the compute engine, the data source can now be a feature view.
Describe the solution you'd like
A clear and concise description of what you want to happen.
Example:
bfv1 = BatchFeatureView(
source=FileSource(...)
)
bfv2 = BatchFeatureView(
source=bfv1,
...
)
bfv3 = BatchFeatureView(
source=[bfv1, bfv2],
...
)
Can use Single DataSource
, Single FeatureView
, or List of FeatureView
as source.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
franciscojavierarceo and ebolblgafranciscojavierarceo