You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The offline pipeline is built for offline development of features for experimentation and model training. The offline pipeline works with a static data source and writes the resulting features to either a CSV or an external DB connection.
The offline pipeline should be easily transferable to the online setting by changing the source type to be dynamic (e.g. a kafka stream). The offline pipeline will complete execution once all the data is read and processed.
Example
# define connectors source_conn=TableConnector(hive_connection, historical=True)
embedding_conn=TableConnector(redis_connection, historical=False)
# offline pipeline requires that all sources are staticpipeline=Ralf(offline=True)
source=ralf.csv_source(filename="data.csv", static=True, connector=source_conn)
user_clicks=source.groupby(key="user")
embedding=user_clicks.map(MyOperator, args=(...), connector=embedding_conn)
pipeline.run()
The text was updated successfully, but these errors were encountered:
The offline pipeline is built for offline development of features for experimentation and model training. The offline pipeline works with a static data source and writes the resulting features to either a CSV or an external DB connection.
The offline pipeline should be easily transferable to the online setting by changing the source type to be dynamic (e.g. a kafka stream). The offline pipeline will complete execution once all the data is read and processed.
Example
The text was updated successfully, but these errors were encountered: