Streaming Live Events
This process is very simple, but it requires that each event is structured as a Python dictionary that maps field names (as they are defined in your Model's schema) to values.
Example 1: A simple three-input fraud model.
🚧 Note
If you have a pandas DataFrame, you can easily convert it into a list of event dictionaries in the above form by using its
to_dict
function.
Then to upload the event to Fiddler, all you have to do is call the Fiddler client's fdl.Model.publish
method.
After calling the function, please allow 3-5 minutes for events to populate the Monitor page.
📘 Info
The
event_timestamp
field should contain the Unix timestamp in milliseconds for the time the event occurred.If you do not specify an event timestamp column in the event data published to Fiddler, the current time will be used for each published event. This timestamp will be used to plot the event on time series charts for monitoring. You can specify a custom event timestamp by setting its column name on your
fdl.Model
's event_ts_col property and ensure it is present on each inference published to Fiddler.
Example 2: Bank churn event
Here's an example using a bank churn model.
The fdl.Model.publish
API can be called in real-time right after your model inference.
Last updated