MCPcopy Create free account
hub / github.com/feast-dev/feast / apply_normalization

Function apply_normalization

sdk/python/feast/infra/ray_shared_utils.py:222–227  ·  view source on GitHub ↗
(series: pd.Series)

Source from the content-addressed store, hash-verified

220 exclude_columns = exclude_columns or []
221
222 def apply_normalization(series: pd.Series) -> pd.Series:
223 return (
224 pd.to_datetime(series, utc=True, errors="coerce")
225 .dt.floor("s")
226 .astype("datetime64[ns, UTC]")
227 )
228
229 if is_ray_data(data):
230

Callers 2

normalize_batchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected