Feature extractors
Most common learn-to-rank tasks usually have typical shared set of ML features. As long as you follow the ingestion event schema, Metarank tries to automate creation of these features for you.
Mapping input events into ML features
When Metarank receives a stream of events (both online during inference, and offline while training), it joins them together into a single view of visitor click chain:
For each ranking event, we do a per-item join of item metadata events (and also pull user metadata events)
All the interaction events like clicks and purchases are also joined together
So each feature extractor has full access to complete view of the click chain. Then a sequence of differently scoped extractors take this view as an input and emit feature values in the following order:
item: uses only item metadata as a source
session: session-specific values
interaction: ones from interaction events
Configuration
All the feature extractors have a set of common fields:
name
: required, string. Feature name, should be unique across the whole config.refresh
: optional, time, default value is specific to the extractor. How frequently this feature is updated.ttl
: optional, time, default: 90d (3 months). How long should this feature store it's value.scope
: optional. See the Scoping chapter for more information.
Scoping
Metarank uses scopes for computing and storing feature values. Feature values are stored not as atomic values but as a time-based changelog, where scope is a unique key for this particular instance of the ML feature.
Metarank has four predefined types of scopes:
global: the feature is scoped globally , for example, air temperature outside the server room.
item: take the item id for a feature changelog, for example: an item popularity.
user: use user id as a unique id, for example: number of past sessions.
session: use session id as a unique id, for example: number of items in a cart right now.
Scoping is also used for optimizing feature grouping while doing inference and model training: we compute all the ML features defined in the configuration for all candidate items, but some of the features are constant for the full ranking: if you have a site-global feature of air temperature outside, then it will be the same for all the items in the ranking, so no need to repeat the computation again.
While building training data for the offline bootstrapping stage, this optimization technique can save a lot of raw processing power.
Scoping example
All ML feature extractors in Metarank have a scope
option in their configuration. For example:
The scope: item
means that the extracted popularity field from item metadata should be stored by an item identifier key.
Feature types
Generic feature extractors
number: uses a raw numerical field value as a feature.
vector: reduces a variable length number vector to a fixed size value array.
boolean: uses a raw boolean field as a 1 or 0 feature value.
string: uses a raw string or list field as an input and does a one-hot encoding of it.
word_count: how many words are in a string field.
list_size: size of string or numerical list.
time_diff: difference in seconds between current timestamp and the numerical field value.
field_match: match ranking field over item fields.
User session feature extractors
ua/platform: a one-hot encoded platform (mobile, desktop, tablet).
ua/os: a one-hot encoded OS (ios, android, windows, linux, macos, chrome os).
ua/browser* a one-hot encoded browser (chrome, firefox, safari, edge).
interacted_with: for the current item, did this visitor have an interaction with other item with the same field.
[coming soon] ip_country: a GeoIP-based country.
[coming soon] ip_city: a GeoIP-based city.
referer_medium: a source of traffic for this customer.
[coming soon] session_length: length of the current visitor session in seconds.
[coming soon] session_count: number of total sessions tracked for this customer.
Ranking feature extractors
relevancy: use a supplied per-product relevancy from the rerank request.
position: Item position in ranking.
diversity: Search results diversification.
Interaction feature extractors
interaction_count: number of interaction made within this session.
window_event_count: sliding window count of interaction events.
rate: rate of interaction events of type A over interaction events of type B. Useful for CTR/CVR rates.
Date and time
local_time: map local visitor date-time to catch seasonality.
item_age: how much time passed since the item was updated?
Last updated