Demo Notebooks
Last updated
Was this helpful?
Was this helpful?
feast demo-notebooks# Write to a custom directory
feast demo-notebooks -o ./my-notebooks
# Overwrite existing notebooks
feast demo-notebooks --overwrite
# Use --chdir to point at a different feature repo
feast -c /path/to/feature_repo demo-notebooksfrom feast import copy_demo_notebooks
copy_demo_notebooks()from feast import copy_demo_notebooks
# Default — searches current directory, writes to ./feast-demo-notebooks/
copy_demo_notebooks()
# Custom paths
copy_demo_notebooks(
output_dir="/home/user/notebooks",
repo_path="/home/user/feast-projects/my-repo/feature_repo",
overwrite=True,
)feast-demo-notebooks/
├── project_alpha/
│ ├── 01_feature_store_overview.ipynb
│ ├── 02_historical_features_training.ipynb
│ └── 03_online_features_serving.ipynb
└── project_beta/
├── 01_feature_store_overview.ipynb
├── 02_historical_features_training.ipynb
└── 03_online_features_serving.ipynb