module documentation
Undocumented
Async Function | validate |
Validateds if the sources can fulfill the needs required by the feature views Therefore, this means that the views get their "core features". |
async def validate_sources_in(views:
list[ SourceRequest]
) -> dict[ FeatureLocation, bool]
:
(source)
¶
Validateds if the sources can fulfill the needs required by the feature views Therefore, this means that the views get their "core features".
``` source = FileSource.parquet_at('test_data/titanic.parquet')
views = feature_store.views_with_batch_source(source) validation = await validate_sources_in(views)
>>> {'titanic_parquet': True} ```
- Args:
- views (list[FeatureViewStore]): The feature views to check
- Returns:
- dict[str, bool]: A dict containing the feature view name and if the source full fill the need