A small example package
Project description
feature store utils
A light-weight package that allows you express ML features in simple yaml, build a training data set and then write them to a feature store.
some general thoughts on building a training dataset
https://docs.google.com/presentation/d/1tVkrwCLVwFp8cZC7CmAHSNFhsJrcTdC20MlZfptkSBE/edit?usp=sharing
options for use
- clone this repo. create features.yaml. follow demo notebook. do not check back in.
- create you own repo and install as package (currently in testpypi). See https://github.com/BenMacKenzie/churn_model_demo as an example. Note that you must create a .env file in folder which contains the features.yaml file
Notes
- Current version is experimental. Not clear that Jinja is the right way to write parameterized SQL. Might be better to do in Python.
- Current version is not optimized. Each feature is calculated individually, whereas if table, filters and time windows are identical, multiple aggregation features can be calculated simultaneously.
- I believe there are around a dozen standard feature types. The most common have been implemented. Note that views can fill in a lot of gaps if encountered. missing:
- type 1 lookup.
- 1st order aggregations over time series (e.g., just treat it like a fact table)
- 2nd order aggregations over time series e.g., max monthly job dbu over 6 month window.
- time in state, e.g., how long was a ticket open. based on a type 2 table.
- time to event in fact table, e.g., time since last call to customer support
- scalar functions of two or more features, e.g, time in days between two date
- num state changes over interval (rare)
- functions of features (e.g., ratio of growth in job dbu to interactive dbu). Arguably this is not needed for boosted trees. Might be useful for neural nets...but why use a nueral net on heterogeneous data? (actually this kind of thing can be good for model explainability)
- Need to illustrate adding features from a related dimension table (using a foreign key...machinery is in place to do so.)
- Current version illustrates creating a pipeline which uses the api. But it would be nice just to generate the code and write it to a notebook so that the package is invisible in production (like bamboolib)
- The demo repo (https://github.com/BenMacKenzie/churn_model_demo) illustrates 'hyper-features' which are features with variable parameters.
- Connecting 'hyper-features' to feature store needs to be worked out. Currently the option is to add all of them or specify individual version by their (generated) name
- Fix feature store feature gen observation dates. Align with grain of feature, e.g., if grain is monthly make sure feature store contains an observation on first of month.
Building
note that you need a token to do this...probably I am the only one who can push to testpypi at the moment.
python3 -m build
python3 -m twine upload --repository testpypi dist/*
Running unit tests on databricks
- install the databricks extension for vscode
- use this repo as a template. Note the following:
- remote_test_harness/pytest_databricks.py
- .vscode/launch.json
- write tests as usual (see tests/time_series/time_series_test.py as an example)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ben_mackenzie_features-0.0.17.tar.gz
.
File metadata
- Download URL: ben_mackenzie_features-0.0.17.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b16d472a6b1a10b6e2ed0c7f8624af80b94538783f2e99b9e3301c252b75718d |
|
MD5 | 170378f95302621ffdcfa958bbcc3146 |
|
BLAKE2b-256 | 802f6820a90e51f3f23d3124c6999f494749f947c57e7ba8c12d8fe32a720b4f |
File details
Details for the file ben_mackenzie_features-0.0.17-py3-none-any.whl
.
File metadata
- Download URL: ben_mackenzie_features-0.0.17-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1dfc0810e3d044cd4952c0ec313c27987d59a5471ecb9890e6554edcb2af5736 |
|
MD5 | c002f700b77bc82383c918683feb6195 |
|
BLAKE2b-256 | bb535a02e966490ad5988dc53fa7ccb157aaa23af0756f296e332a12bb285c74 |